password)) { static::remember($user); return true; } } return false; } /** * Log a user into your application. * * The user's ID will be stored in the session and the user will be considered * "logged in" on subsequent requests to your application. * * Note: The user given to this method should be an object having an "id" property. * * @param object $user * @return void */ public static function remember($user) { static::$user = $user; Session::put(static::$key, $user->id); } /** * Log the user out of your application. * * The user ID will be removed from the session and the user will no longer * be considered logged in on subsequent requests. * * @return void */ public static function logout() { static::$user = null; Session::forget(static::$key); } }