flugg / laravel-responder

A Laravel Fractal package for building API responses, giving you the power of Fractal with Laravel's elegancy.
MIT License
861 stars 86 forks source link

Support for simplePaginate #197

Open TCURT15 opened 1 year ago

TCURT15 commented 1 year ago

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
}