LoginSignup
0
0

More than 3 years have passed since last update.

laravelのよく使うmakeコマンド(メモ)

Last updated at Posted at 2021-04-27

コントローラを作成--

$ php artisan make:controller コントローラ名

モデルを作成

※補足ですがモデル名は単数形にするのが慣例らしいです

$ php artisan make:model モデル名

末尾に-mを付けるとマイグレーションも一緒に作成してくれる

php artisan make:model モデル名 -m

マイグレーションを作成

$ php artisan make:migration create_テーブル名_table --create=テーブル名

シーダーを作成

$ php artisan make:seeder シーダー名

Authのあれこれを自動生成する

$ php artisan make:auth
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0