Laravel常用指令集散地

--

替金魚腦的我花在搜尋command上的時間感到哀傷,持續更新。

Laravel artisan

Database

建立資料表> php artisan make:migration create_表名_table — create=表名

增加欄位> php artisan make:migration add_欄名_to_表名_table — table=表名

執行> php artisan migrate

回溯> php artisan migrate:rollback — step=回溯步驟數

Model

建立> php artisan make:model class名稱

Controller

建立> php artisan make:controller class名稱

UnitTest

建立> php artisan make:test — unit class名稱

執行> php artisan test

同場加映

一次建好model與migration> php artisan make:model 名稱 — migration

Laravel on Linux

設定權限

Laravel 在Linux運行的時候,會需要寫入cache 及 log檔的權限。

--

--