1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

laravel モデルクラスと一緒にファクトリーとシーダーとマイグレーションを作成するコマンド

Last updated at Posted at 2023-01-21

概要

  • モデルクラス作成時にファクトリー、シーダー、マイグレーションを同時に一回で作成するコマンドをまとめる。

方法

  • 下記を実行することで一回で作成する事ができる。

    php artisan make:model -fsm モデル名(基本単数形)
    
  • -fをつけるとモデルクラスと一緒にファクトリーを作成

  • -sをつけるとモデルクラスと一緒にシーダーを作成

  • -mをつけるとモデルクラスと一緒にマイグレーションを作成

1
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?