laravel5.4系列之Artisan相关命令总结(未完)

来源:互联网 发布:詹姆士生涯总数据预测 编辑:程序博客网 时间:2024/06/03 22:52
  • 创建中间件命令(在app/Http/Middleware文件夹下面生成test.php的中间件)
    代码:php artisan make:middleware test

  • 创建控制器命令(在app/Http/Controller下生成TestController文件)
    代码:php artisan make:controller TestController

  • 路由缓存
    php artisan route:cache

  • 路由缓存清除
    php artisan route:clear
  • 表单请求类,可使用 Artisan 命令行命令
    php artisan make:request StoreBlogPost
原创粉丝点击