建立控制器
php artisan make:controller 控制器名稱php artisan make:controller SitesController
建立模型 model
php artisan make:model 模型名稱php artisan make:model User
建立資料表
php artisan make:migration create_表名_table --create=表名
php artisan make:migration create_tasks_table --create=tasks // 建立 migration 檔案
php artisan migrate //執行建立指令
新增資料表欄位名
php artisan make:migration add_欄位名_column_to_表名 --table=表名
php artisan make:migration add_intro_column_to_tasks --table=tasks
php artisan migrate