Skip to content

Instantly share code, notes, and snippets.

@BrightnBubbly
Created April 9, 2020 12:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BrightnBubbly/e76a1b426b252d29ca133d16f03bfaf0 to your computer and use it in GitHub Desktop.
Save BrightnBubbly/e76a1b426b252d29ca133d16f03bfaf0 to your computer and use it in GitHub Desktop.
// [...]
/**
* Get all users
*/
public function getUsers(Request $request)
{
return response()->json([
'users' => User::all()
], 200);
}
// [...]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment