我是laravel框架的新手,作为框架的第一个应用程序,我试图创建一个最小的应用程序,我想知道如何查看在routes.php下找到的默认身份验证,登录,注册页面? / p>
Route::get('/', 'WelcomeController@index');
Route::get('home', 'HomeController@index');
Route::controllers([
'auth' => 'Auth\AuthController',
'password' => 'Auth\PasswordController',
]);
我只能看到欢迎页面,如下所示,
project hosted directory is E:\xampp\htdocs\directory\app\
当我走到这条道路时, http://localhost/directory/public/auth/login 我可以看到登录页面,但它没有任何样式,只有像这样的普通用户界面。
当我点击登录按钮时,URL会重定向到其他地方。
它在这里 - >的 http://localhost/auth/login
并显示找不到对象!错误。
我的配置错过了什么?
更新:似乎app.blade.php没有加载,这就是为什么页面处于纯文本模式而没有任何html样式的原因。