function($id) { if ( ! is_null($id)) return User::find($id); }, /* |-------------------------------------------------------------------------- | Authenticate User Credentials |-------------------------------------------------------------------------- | | This closure is called by the Auth::attempt() method when attempting to | authenticate a user that is logging into your application. | | If the provided credentials are correct, simply return an object that | represents the user being authenticated. If the credentials are not | valid, don't return anything. | | Note: If a user object is returned, it must have an "id" property. | */ 'attempt' => function($username, $password) { if ( ! is_null($user = User::where('email', '=', $username)->first())) { if (Hasher::check($password, $user->password)) return $user; } }, /* |-------------------------------------------------------------------------- | Logout |-------------------------------------------------------------------------- | | Here you may do anything that needs to be done when a user logs out of | your application, such as call the logout method on a third-party API | you are using for authentication, or anything else you desire. | */ 'logout' => function($user) {} );