问题
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.
回答1:
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()
];
}
来源:https://stackoverflow.com/questions/57869078/modify-the-wrapping-of-the-outer-most-resource-in-laravel