Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@dhrrgn
Last active May 23, 2018 01:47
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 dhrrgn/a9a86cd1ef70ef1aa08e46c2a7a7c800 to your computer and use it in GitHub Desktop.
Save dhrrgn/a9a86cd1ef70ef1aa08e46c2a7a7c800 to your computer and use it in GitHub Desktop.
<?php
$user = User::whereToken($token)->first();
if (!$user) {
return ['message' => 'Sorry, no user found with that token.'];
}
return $user;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment