创建控制器:php artisan make:controller 控制器名(可拼接文件夹如user/UserController)
创建模型:php artisan make:model 模型名
创建数据库迁移文件:php artisan make:migration 文件名(如create_user_table)
执行数据库迁移文件:php artisan migrate –path=/database/migrations/2021_08_30_072323_create_user_table.php (单个)
php artisan migrate (运行所有未执行的迁移)
回滚迁移:php artisan migrate:rollback
创建中间件:php artisan make:middleware 中间件文件名
创建验证器:php artisan make:request 验证器文件名
创建命令类:php artisan make:command 文件名
清除所有缓存(如果缓存是redis数据也会清空):php artisan cache:clear
创建模型观察者(需注册):php artisan make:observer TestObserver -m 监听的模型名
创建队列:php artisan make:job SendEmail
队列重启:php artisan queue:restart
队列监听:php artisan queue:listen
若composer提示php版本过低:composer install –ignore-platform-reqs
若模型中定义追加属性:$appends 则ORM控制器select中必须选择相应字段