php artisan -V 获取laravel当前版本号
php artisan clear-compiled 删除编译后的类文件
php artisan completion 转储shell完成脚本
php artisan down 将应用程序置于维护模式
php artisan env 显示当前框架环境
php artisan help 显示命令的帮助
php artisan inspire 展示鼓舞人心的名言
php artisan list 命令列表
php artisan migrate 运行数据库迁移
php artisan optimize 缓存框架引导文件
php artisan serve 在PHP开发服务器上提供应用程序
php artisan test 运行应用程序测试
php artisan tinker 与应用程序交互
php artisan up 使应用程序脱离维护模式
php artisan auth:clear-resets 刷新过期的密码重置令牌
php artisan cache:clear 刷新应用程序缓存
php artisan cache:forget 从缓存中删除项目
php artisan cache:table 为缓存数据库表创建一个迁移
php artisan config:cache 创建一个缓存文件,以更快的配置加载
php artisan config:clear 删除配置缓存文件
php artisan db:seed 在数据库中添加记录
php artisan db:wipe 删除所有表、视图和类型
php artisan event:cache 发现并缓存应用程序的事件和侦听器
php artisan event:clear 清除所有缓存的事件和侦听器
php artisan event:generate 基于注册生成缺少的事件和侦听器
php artisan event:list 列出应用程序的事件和侦听器
php artisan key:generate 设置应用程序密钥
php artisan make:cast 创建一个新的自定义Eloquent cast类
php artisan make:channel 创建一个新的通道类
php artisan make:command 创建一个新的Artisan命令
php artisan make:component 创建新的视图构件类
php artisan make:controller 创建一个新的控制器类
php artisan make:event 创建一个新的事件类
php artisan make:exception 创建新的自定义异常类
php artisan make:factory 创建一个新的模型工厂
php artisan make:job 创建一个新的工作类
php artisan make:listener 创建一个新的事件侦听器类
php artisan make:mail 创建一个新的电子邮件类
php artisan make:middleware 创建一个新的中间件类
php artisan make:migration 创建一个新的迁移文件
php artisan make:model 创建一个新的Model模型类
php artisan make:notification 创建一个新的通知类
php artisan make:observer 创建一个新的观察者类
php artisan make:policy 创建一个新的策略类
php artisan make:provider 创建一个新的服务提供者类
php artisan make:request 创建一个新的控制器验证类
php artisan make:resource 创建一个新资源
php artisan make:rule 创建一个新的验证规则
php artisan make:seeder 创建一个新的种子类
php artisan make:test 创建一个新的测试类
php artisan migrate:fresh 删除所有表并重新运行所有迁移
php artisan migrate:install 创建迁移存储库
php artisan migrate:refresh 重置并重新运行所有迁移
php artisan migrate:reset 回滚所有数据库迁移
php artisan migrate:rollback 回滚最后一次数据库迁移
php artisan migrate:status 显示每次迁移的状态
php artisan notifications:table 为通知表创建一个迁移
php artisan optimize:clear 删除缓存的引导文件
php artisan package:discover 重新构建缓存的包清单
php artisan queue:failed 列出所有失败的队列作业
php artisan queue:failed-table 为失败的队列任务数据库表创建一个迁移
php artisan queue:flush 清除所有失败的队列作业
php artisan queue:forget 删除失败的队列作业
php artisan queue:listen 监听给定队列
php artisan queue:restart 在当前任务完成后重新启动队列工作守护进程
php artisan queue:retry 重试失败的队列作业
php artisan queue:table 为队列作业数据库表创建一个迁移
php artisan queue:work 在队列上作为守护进程启动处理作业
php artisan route:cache 创建一个路由缓存文件,以更快的路由注册
php artisan route:clear 删除路由缓存文件
php artisan route:list 列出所有注册的路由
php artisan session:table 为会话数据库表创建一个迁移
php artisan vendor:publish 从供应商包中发布任何可发布的资产
php artisan view:cache 编译应用程序的所有Blade模板
php artisan view:clear 清除所有已编译的视图文件
|