创建控制器
php artisan make:controller TestController //创建普通控制器
php artisan make:controller Admin\TestController //在admin下面创建控制器
php artisan make:controller TestController --resource (php artisan make:controller TestController --resource) //创建资源控制器
创建控制器同时创建模型
php artisan make::controller TestController --model=Test//创建控制器同时创建模型先创建模型,后创建控制器,并且控制器自动引用模型
创建迁移文件
php artisan make:migration create_users_table
//--table 和 --create 选项可用来指定数据表的名称,或是该迁移被执行时是否将创建的新数据表。这些选项需在预生成迁移文件时填入指定的数据表:
php artisan make:migration create_users_table --create=users
php artisan make:migration add_votes_to_users_table --table=users
创建模型的同时创建迁移文件
php artisan make:model ModelName -m //-m表示创建迁移文件
执行迁移命令
php artisan migrate
创建中间件
php artisan make:middleware MiddlewareName
路由
Route::resource("test","TestController");//资源路由(一般和资源控制器配合使用)
Route::resource("test","TestController")->only(['index','show']);//只使用这两个方法
Route::resource("test","TestController")->except(['destroy']);//排除这两个方法
本人有份laravel5.8教学课程,需要的同学可以关注公众号:小贝壳的资源库恢复laravel获取
小贝壳的资源库
网友评论