Laravel 5のよく使うartisanコマンド

コントローラー作成
php artisan make:controller hogeController
モデル作成
php artisan make:model hogeModel
マイグレーション作成(新規テーブル)
php artisan make:migration create_hoges_table --create=hoges
マイグレーション作成(既存テーブル)
php artisan make:migration modify_hoges_table --table=hoges
マイグレーション実行
php artisan migration
外部PCからも接続できる形で内部サーバ起動
php artisan serve --host 0.0.0.0