Modify the wrapping of the outer-most resource in Laravel

亡梦爱人 提交于 2021-01-29 13:02:22

问题


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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!