I've Eloquent API Resource UserResource. When I try run something like this code:
$users = User::paginate(10);
return UserResource::collection($users);
Response will be like this:
{
"data": [
{
"name": "Fatima Conroy",
"email": "ocie.stark@example.org"
},
{
"name": "John Doe",
"email": "john.doe@example.org"
}
]
}
How I can remove data key or rename it the get something like this response?
[
{
"name": "Fatima Conroy",
"email": "ocie.stark@example.org"
},
{
"name": "John Doe",
"email": "john.doe@example.org"
}
]