Laravel 新项目 - 没有 home.blade.php

Laravel new project - no home.blade.php

我的 laravel new project_name 似乎缺少 home.blade.php 视图?我还注意到,在创建项目时,我曾经在路由组和 Web 中间件中拥有所有默认路由,而现在我只有一个路由。

有人遇到同样的问题吗?

现在改为手动命令,因为一些用户想要开始一些不同的东西。 https://laravel.com/docs/5.2/authentication#authentication-quickstart。只需 运行 命令 php artisan make:auth 一切都会被创建,你以前拥有的东西。

从v5.2.27开始,所有路由自动使用web中间件。另外,现在没有 home 视图,只有 welcome:

https://github.com/laravel/laravel/tree/master/resources/views

您可以 运行 make:auth 构建 home 视图(也授权控制器和授权路由)。