我正在使用laravel 5.2并使用auth命令开发日志/注册系统和Lartrust管理面板。然后,当我使用系统日志记录页面登录时,没有移动到localhost:8000/home
页面。它会重定向到welcome.blade.php
页面。如何将我登录的页面重定向到localhost:8000 / home我的routes.php是
Route::get('/', function () {
return view('welcome');
});
Route::auth();
Route::get('/home', 'HomeController@index')->name('home');
答案 0 :(得分:1)
在您的登录控制器中更改redirectTo' /'到' / home&#39 ;;
class LoginController extends Controller
{
use AuthenticatesUsers;
protected $redirectTo = '/home';
}