0

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.

CoffeeAddiKt
  • 109
  • 3
  • 12

1 Answers1

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