Thanks for this very handy package. I am running into some unexpected results when using Laravel's simple pagination. The pagination data is missing from the response.
return responder()->success(Post::simplePaginate(15));
Current Result
{
data: [],
status: 200,
success: true
}
Expected Result
{
data: [],
pagination: {},
status: 200,
success: true
}
Thanks for this very handy package. I am running into some unexpected results when using Laravel's simple pagination. The pagination data is missing from the response.
Current Result
Expected Result