ログイン後にページをリダイレクトするにはどうすればよいですか? Laravel 5.2ログイン後にLaravelリダイレクト
AuthControllerに
protected $redirectTo = '/';
RedirectUsers
<?php
namespace Illuminate\Foundation\Auth;
trait RedirectsUsers
{
/**
* Get the post register/login redirect path.
*
* @return string
*/
public function redirectPath()
{
if (property_exists($this, 'redirectPath')) {
return $this->redirectPath;
}
return property_exists($this, 'redirectTo') ? $this->redirectTo : '/';
}
}
ログイン機能で 'return redirect() - > back()'を追加するだけです。あなたがリダイレクトループで終わらないようにしてください。 – Andrew
@Andrew ここでそのコードを追加しますか?私はmake:auth in Laravel 5.2 – jungmyung