password)) { static::$user = $user; Session::put(static::$key, $user->id); return true; } } return false; } /** * Logout the user of the application. * * @return void */ public static function logout() { Session::forget(static::$key); static::$user = null; } }