我已经使用5.4,但是从5.7版本开始迷路了。 当想要开始一个新项目时,我已经拥有很多功能,例如已经生成了身份验证以及带有webpack和Vue.js的一些JavaScript内容 并且默认情况下,我看到“ /” URL受身份验证中间件的保护。
laravel list命令打印
Usage:
command [options] [arguments]
Options:
-h, --help Display this help message
-q, --quiet Do not output any message
-V, --version Display this application version
--ansi Force ANSI output
--no-ansi Disable ANSI output
-n, --no-interaction Do not ask any interactive question
-v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
Available commands:
help Displays help for a command
list Lists commands
new Create a new Laravel application.
但是,如果我只想要一个极简主义的项目该怎么办? 我不想创建一个API,所以我不需要Lumen。只需创建一个可能使用身份验证支架,模板引擎刀片的应用程序,然后让我自己配置webpack(默认情况下不使用vue.js),如果我想通过示例使用typescript进行反应。
答案 0 :(得分:0)
从Laravel 6开始,您可以添加UI和auth作为附加选项。
laravel new abc
composer require laravel/ui
php artisan ui [bootstrap, vue, react] --auth
请在文档中查找