Для 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, устанавливать перенаправление на сеанс, и это будет работать магическим образом.