I want to modify the wrapping of the outer-most resource. In documentation there is a solution on how to remove the default "data" wrap but I can't find how to change it to another key.
Asked
Active
Viewed 629 times
1 Answers
0
Remove the default via Resource::withoutWrapping()
, and then manually wrap the data in the Resource class:
public function toArray()
{
return [
"my-custom-key" => $this->resource->toArray()
];
}

levi
- 23,693
- 18
- 59
- 73