每次我想使用laravel/ui包和 Bootstrap 脚手架设置身份验证路由来启动一个新的 Laravel 8 项目时,我都会遇到以下图像。
这意味着 Bootstrap 尚未加载!因此,我必须重新运行php artisan UI bootstrap
并npm install && npm run dev
正确设置它们。
以下是我用于创建新 Laravel 8 项目的步骤:
Install LARAVEL: laravel new [yourprojectname]
Install LARAVEL UI Package: composer require laravel/ui
Generate UI Bootstrap: php artisan ui bootstrap
Generate Auth Scaffolding: php artisan ui bootstrap --auth
Install NPM Dependencies: npm install && npm run dev
Running LARAVEL: php artisan serve
但现在我想把这件事直接记在脑海里,这样我就不必再重新运行代码了。我的意思是,运行一个完整且准备好的项目的正确分步命令是什么?