2020-09-29

Laravel php artisan 自动生成Model+Migrate+Controller 命令大全

php artisan 命令是Laravel框架自带的命令,方便用户快速创建、查看对应的模块参数等。

一、常用的命令:

命令 解释
php artisan list 查看php artisan所有命令
php artisan --help 查看php artisan的用法
php artisan help admin:make 查看php artisan admin:make的用法
php artisan admin:make --help 查看php artisan admin:make的用法

创建控制器

  1. php artisan make:controller OrderController

创建Rest风格资源控制器(带有index、create、store、edit、update、destroy、show方法)

  1. php artisan make:controller OrderController --resource

创建模型

  1. php artisan make:model Student

创建新建表的迁移和修改表的迁移

  1. php artisan make:migration create_orders_table --create=orders //创建订单表orders
  2. php artisan make:migration add_tags_to_orders_table --table=orders//给orders表增加tags字段

执行迁移

  1. php artisan migrate

创建模型的时候同时生成新建表的迁移+控制器+路由

  1. php artisan make:model Order -m -c -r

回滚上一次的迁移

  1. php artisan migrate:rollback

回滚所有迁移

  1. php artisan migrate:reset

创建填充

  1. php artisan make:seeder OrderTableSeeder

执行单个填充

  1. php artisan db:seed --class=OrderTableSeeder

执行所有填充

  1. php artisan db:seed

创建中间件(app/Http/Middleware 下)

  1. php artisan make:middleware Activity

创建队列(数据库)的表迁移(需要执行迁移才生效)

  1. php artisan queue:table

创建队列类(app/jobs下):

  1. php artisan make:job SendEmail

创建请求类(app/Http/Requests下)

  1. php artisan make:request CreateArticleRequest

二、通常一个laravel项目的后台管理系统搭建流程,如下

  1. 下载Laravel框架,安装Laravel-admin后台管理框架,进行基础的数据库连接配置,上传配置,https/http访问方式等

  2. Linux服务器下面,进入项目的根目录,可以用php artisan make命令创建模型+数据迁移+控制器。

  3. 用php artisan admin:make 创建后台的控制器,可以写脚本批量创建。之后根据业务逻辑,编写控制器内容。

  4. 为后台的控制器创建对于的路由,可以写脚本批量创建。

  5. 登录Laravel-admin后台系统,设置对应的菜单。

三、Laravel Artisan 命令大全

Available commands:

命令 中文 English
clear-compiled 删除已编译的类文件 Remove the compiled class file
down 将应用程序置于维护模式 Put the application into maintenance mode
dump-server 启动转储服务器以收集转储信息。 Start the dump server to collect dump information.
env 显示当前的框架环境 Display the current framework environment
help 显示命令的帮助 Displays help for a command
inspire --- Display an inspiring quote
list 列出命令 Lists commands
migrate 运行数据库迁移 Run the database migrations
optimize 缓存框架引导程序文件 Cache the framework bootstrap files
preset 为应用程序交换前端脚手架 Swap the front-end scaffolding for the application
serve 在 PHP 开发服务器上提供应用程序 Serve the application on the PHP development server
tinker 与您的应用程序互动 Interact with your application
up 使应用程序退出维护模式 Bring the application out of maintenance mode

app

命令 中文 English
app:name 设置应用程序命名空间 Set the application namespace

auth

命令 中文 English
auth:clear-resets 刷新过期的密码重置令牌 Flush expired password reset tokens

cache

命令 中文 English
cache:clear 刷新应用程序缓存 Flush the application cache
cache:forget 从缓存中删除项目 Remove an item from the cache
cache:table 为缓存数据库表创建迁移 Create a migration for the cache database table

config

命令 中文 English
config:cache 创建缓存文件以加快配置速度 Create a cache file for faster configuration loading
config:clear 删除配置缓存文件 Remove the configuration cache file

db

命令 中文 English
db:seed 填充数据库 Seed the database with records

event

命令 中文 English
event:generate 根据注册生成缺少的事件和侦听器 Generate the missing events and listeners based on registration

key

命令 中文 English
key:generate 生成应用程序 key Set the application key

lang

命令 中文 English
lang:publish 将语言文件发布到资源目录 publish language files to resources directory.

make

命令 中文 English
make:auth --- Scaffold basic login and registration views and routes
make:channel 创建一个新的 channel Create a new channel class
make:command 创建一个新的 Artisan 命令 Create a new Artisan command
make:controller 创建一个新的控制器类 Create a new controller class
make:event --- 创建一个新的 event
make:exception 创建一个新的自定义异常类 Create a new custom exception class
make:factory 创建一个新的模型工厂 Create a new model factory
make:job 创建一个新的工作类 Create a new job class
make:listener 创建一个新的事件监听器类 Create a new event listener class
make:mail 创建一个新的电子邮件类 Create a new email class
make:middleware 创建一个新的中间件类 Create a new middleware class
make:migration 创建一个新的迁移文件 Create a new migration file
make:model 创建一个新的 Eloquent 模型类 Create a new Eloquent model class
make:notification 创建一个新的通知类 Create a new notification class
make:observer 创建一个新的观察者类 Create a new observer class
make:policy 创建一个新的策略类 Create a new policy class
make:provider 创建一个新的服务提供者类 Create a new service provider class
make:request 创建一个新的表单请求类 Create a new form request class
make:resource 创建一个新资源 Create a new resource
make:rule 创建新的验证规则 Create a new validation rule
make:scaffold 代码生成器 — Laravel 5.x Scaffold Generator Create a laralib scaffold
make:seeder 创建一个新的 seeder Create a new seeder class
make:test 创建一个新的测试类 Create a new test class

migrate

命令 中文 English
migrate:fresh 删除所有表并重新运行所有迁移 Drop all tables and re-run all migrations
migrate:install 创建迁移存储库 Create the migration repository
migrate:refresh 重置并重新运行所有迁移 Reset and re-run all migrations
migrate:reset 回滚所有数据库迁移 Rollback all database migrations
migrate:rollback 回滚上次数据库迁移 Rollback the last database migration
migrate:status 显示每次迁移的状态 Show the status of each migration

notifications

命令 中文 English
notifications:table 为通知表创建迁移 Create a migration for the notifications table

optimize

命令 中文 English
optimize:clear 删除缓存的引导程序文件 Remove the cached bootstrap files

package

命令 中文 English
package:discover 重建缓存的包清单 Rebuild the cached package manifest

queue

命令 中文 English
queue:failed 列出所有 failed 队列工作 List all of the failed queue jobs
queue:failed-table failed 队列工作数据库表创建迁移 Create a migration for the failed queue jobs database table
queue:flush 刷新所有 failed 队列工作 Flush all of the failed queue jobs
queue:forget 删除 failed 队列工作 Delete a failed queue job
queue:listen 监听一个给定的队列 Listen to a given queue
queue:restart 在当前工作之后重新启动队列工作器守护程序 Restart queue worker daemons after their current job
queue:retry 重试 failed 队列作业 Retry a failed queue job
queue:table 为队列工作数据库表创建迁移 Create a migration for the queue jobs database table
queue:work 开始将队列上的工作作为守护程序处理 Start processing jobs on the queue as a daemon

route

命令 中文 English
route:cache 创建路由缓存文件以加快路由注册速度 Create a route cache file for faster route registration
route:clear 删除路由缓存文件 Remove the route cache file
route:list 列出所有注册的路由 List all registered routes

schedule

命令 中文 English
schedule:run 运行预定的命令 Run the scheduled commands

session

命令 中文 English
session:table 为会话数据库表创建迁移 Create a migration for the session database table

storage

命令 中文 English
storage:link 创建从 “公共 / 存储” 到 “存储 / 应用 / 公共” 的符号链接 Create a symbolic link from "public/storage" to "storage/app/public"

vendor

命令 中文 English
vendor:publish 从供应商包中发布任何可发布的资产 Publish any publishable assets from vendor packages

view

命令 中文 English
view:cache 编译所有应用程序的 Blade 模板 Compile all of the application's Blade templates
view:clear 清除所有编译的视图文件 Clear all compiled view files
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,607评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,047评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,496评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,405评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,400评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,479评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,883评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,535评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,743评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,544评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,612评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,309评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,881评论 3 306
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,891评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,136评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,783评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,316评论 2 342