first(); if ( ! is_null($user)) { if ($user->password === Hash::make($password, $user->salt)->value) { static::$user = $user; Session::put(static::$key, $user->id); return true; } } return false; } /** * Logout the current user of the application. * * @return void */ public static function logout() { Session::forget(static::$key); static::$user = null; } /** * Get the authentication model. * * @return string */ private static function model() { return '\\'.Config::get('auth.model'); } }