Laravel 5.3以降の場合
スコットの答えを確認してください以下の。
Laravel 5から5.2まで
簡単に言えば、
認証ミドルウェア:
// redirect the user to "/login"
// and stores the url being accessed on session
if (Auth::guest()) {
return redirect()->guest('login');
}
return $next($request);
ログイン時:
// redirect the user back to the intended page
// or defaultpage if there isn't one
if (Auth::attempt(['email' => $email, 'password' => $password])) {
return redirect()->intended('defaultpage');
}
Laravel 4(古い回答)
この回答の時点では、フレームワーク自体からの公式のサポートはありませんでした。最近は使えます以下のbgdrlによって指摘されたメソッドこの方法:(私は彼の答えを更新しようとしましたが、彼は受け入れないようです)
認証フィルター:
// redirect the user to "/login"
// and stores the url being accessed on session
Route::filter('auth', function() {
if (Auth::guest()) {
return Redirect::guest('login');
}
});
ログイン時:
// redirect the user back to the intended page
// or defaultpage if there isn't one
if (Auth::attempt(['email' => $email, 'password' => $password])) {
return Redirect::intended('defaultpage');
}
Laravel 3の場合(さらに古い回答)
次のように実装できます。
Route::filter('auth', function() {
// If there's no user authenticated session
if (Auth::guest()) {
// Stores current url on session and redirect to login page
Session::put('redirect', URL::full());
return Redirect::to('/login');
}
if ($redirect = Session::get('redirect')) {
Session::forget('redirect');
return Redirect::to($redirect);
}
});
// on controller
public function get_login()
{
$this->layout->nest('content', 'auth.login');
}
public function post_login()
{
$credentials = [
'username' => Input::get('email'),
'password' => Input::get('password')
];
if (Auth::attempt($credentials)) {
return Redirect::to('logged_in_homepage_here');
}
return Redirect::to('login')->with_input();
}
セッションにリダイレクトを保存すると、ユーザーが資格情報を誤って入力した場合や、アカウントを持っていないためサインアップする必要がある場合でも、リダイレクトを維持できるという利点があります。
これにより、Auth以外にセッションでリダイレクトを設定でき、魔法のように機能します。