composer require laravel/ui
php artisan ui bootstrap --auth
npm install
npm dev run
创建 Model
php artisan make:model Course
INFO Model [app/Models/Course.php] created successfully.
数据库迁移
php artisan make:migration create_persistence
INFO Migration [database/migrations/2025_02_12_105900_create_persistence.php] created successfully.
向已经存在的表中加入新的列
// 生成对应的数据迁移文件
php artisan make:migration add_count_to_courses_table --table=courses
// 执行数据迁移
php artisan migrate