1.创建控制器 php artisan make:controller ArticleController // 带 restful 风格 php artisan make:controller ArticleController --resource // 路由restful Route::resource('staff','StaffController'); 2.生成中间件,俗称 过滤器 php artisan make:middleware CheckAge 3. 生成 迁移脚本 php…