生成一个随机的 key
php artisan key:generate
生成 Model
php artisan make:model App\Models
//创建模型的时候同时生成新建表的迁移
php artisan make:model App\Models -m
生成 Controller
php artisan make:controller PostController
// 创建Rest风格资源控制器(带有index、create、store、edit、update、destroy、show方法)
php artisan make:controller PostController --resource
迁移数据表
php artisan make:migration create_users_table --create=students //创建students表
php artisan make:migration add_votes_to_users_table --table=students//给students表增加votes字段
Laravel 生成 migrations 文件
php artisan make:model --migration Post
创建填充 seed
php artisan make:seeder PostTableSeeder
数据库迁移:
php artisan migrate
回滚上一次迁移
php artisan migrate:rollback
回滚所有迁移
php artisan migrate:reset
重置并重新执行所有的数据迁移
php artisan migrate:refresh
创建中间件
php artisan make:middleware Activity
创建请求类
php artisan make:request CreateArticleRequest
创建队列类
php artisan make:job SendEmail
更多文章请关注微信公众号:极客仿