创建数据库资源
$ php artisan make:migration create_表名_table
将新增的数据库资源导入数据库
$ php artisan migrate
创建模型
$ php artisan make:model 模型名
创建Request
$ php artisan make:request Api/Request名
创建控制器
$ php artisan make:controller Api/控制器名
生成资源
$ php artisan make:resource 资源名