Lavarel5 常用命令

Vckin發表於2018-12-06

Mysql

建立

  • 建立資料表: php artisan make:
  • 加粗: Ctrl/Cmd + B

    執行

  • 資料庫的重置:php artisan migrate:refresh

Main

  • 建立控制器:php artisan make:controller StaticPagesController

命令 說明
php artisan key:generate 生成 App Key
php artisan make:controller 生成控制器
php artisan make:model 生成模型
php artisan make:policy 生成授權策略
php artisan make:seeder 生成 Seeder 檔案
php artisan migrate 執行遷移
php artisan migrate:rollback 回滾遷移
php artisan migrate:refresh 重置資料庫
php artisan db:seed 填充資料庫
php artisan tinker 進入 tinker 環境
php artisan route:list 檢視路由列表
php artisan make:command 生成指令碼

php artisan make:migration create_statuses_table --create="statuses" 建立表

本作品採用《CC 協議》,轉載必須註明作者和本文連結