Dla Laravel 5.3 i nowszych
Sprawdź odpowiedź Scotta poniżej.
Dla Laravel 5 do 5.2
Po prostu,
W przypadku oprogramowania pośredniego uwierzytelniania:
// redirect the user to "/login"
// and stores the url being accessed on session
if (Auth::guest()) {
return redirect()->guest('login');
}
return $next($request);
Podczas akcji logowania:
// 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');
}
Dla Laravela 4 (stara odpowiedź)
W chwili udzielania odpowiedzi nie było oficjalnego wsparcia ze strony samych ram. W dzisiejszych czasach możesz używaćmetoda wskazana przez bgdrl poniżejta metoda: (Próbowałem zaktualizować jego odpowiedź, ale wygląda na to, że nie zaakceptuje)
Na filtrze uwierzytelniania:
// redirect the user to "/login"
// and stores the url being accessed on session
Route::filter('auth', function() {
if (Auth::guest()) {
return Redirect::guest('login');
}
});
Podczas akcji logowania:
// 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');
}
Dla Laravel 3 (nawet starsza odpowiedź)
Możesz to zaimplementować w następujący sposób:
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();
}
Przechowywanie przekierowania na Sesji ma tę zaletę, że trwa, nawet jeśli użytkownik nie wpisuje swoich danych logowania lub nie ma konta i musi się zarejestrować.
Pozwala to również na cokolwiek innego niż Auth, aby ustawić przekierowanie na sesję i będzie działać magicznie.