Skip to content

Instantly share code, notes, and snippets.

@deleugpn
Created January 11, 2018 19:57
Show Gist options
  • Save deleugpn/222ba231aa429cb7bfcfe38e9eaae3ce to your computer and use it in GitHub Desktop.
Save deleugpn/222ba231aa429cb7bfcfe38e9eaae3ce to your computer and use it in GitHub Desktop.
<?php
//...
/**
* @param \Illuminate\Http\Request
* @return mixed
*/
public function __invoke(Request $request)
{
$users = User::paginate($request->get('page_size'));
return UsersResource::collection($users);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment