laravel 5 样板应用无法运行

laravel 5 boilerplate app not working

我是 laravel 框架的新手,作为第一个使用该框架的应用程序,我试图为此创建一个最小的应用程序,我想知道如何查看找到的默认身份验证、登录、注册页面在 routes.php?

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 我可以看到登录页面,但它没有任何样式,只是像这样的普通 UI。

当我点击登录按钮时 URL 正在重定向到其他地方。

到这里 -> http://localhost/auth/login

并显示 找不到对象! 错误。

我在配置中遗漏了什么?

更新:似乎 app.blade.php 没有加载,这就是为什么页面处于没有任何 html 样式的纯文本模式的原因。

您应该将文档根目录设置为指向您的 directory/public 文件夹。

通过这种方式,您将能够直接从 http://localhost

访问 laravel