Laravel框架中常用 artisan 命令

一、创建模型操作

// 普通的创建
php artisan make:model ModelName
// 指定目录创建,模型默认创建在 App 命令空间下
// 一并创建迁移文件,末尾追加 -m (migration 的意思)
php artisan make:model   FileName/ModelName   -m

二、创建控制器操作

// 普通的创建
php artisan make:controller IndexController
// 指定目录创建,默认创建在 App\Http\Controllers 命名空间下
php artisan make:controller FileName/IndexController
// 创建 Rest 风格资源控制器(带有 index、create、store、edit、update、destroy、show 方法),只需要在末尾追加 --resource
php artisan make:controller IndexController --resource

三、创建中间键操作

// 创建中间件
php artisan make:middleware MiddlewareName

四、 路由操作

--- 建议项目上线时在线上创建路由缓存
// 查看路由列表
php artisan route:list
// 生成路由缓存
php artisan route:cache
// 清除路由缓存
php artisan route:clear

你可能感兴趣的:(Laravel框架中常用 artisan 命令)