composer create-project --prefer-dist laravel/laravel blog
composer require laravel/ui php artisan ui bootstrap --auth
或者
php artisan ui vue --auth
修改数据库配置
然后迁移数据库
php artisan migrate
可能会有如下报错
SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes (SQL: alter table `users` add unique `users_email_unique`(`email`))
找到文件“app/Providers/AppServiceProvider.php”文件,进行如下修改:
use Illuminate\Support\Facades\Schema; public function boot() { Schema::defaultStringLength(191); }