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

laravelデータベースのテーブルからモデルを自動生成

Posted at

やりたいこと

コンソール
php artisan make:model モデル名

でモデルを一つずつ作成するのが大変なので

Reliese Laravel Models
を使用してDBのテーブルからmodelを自動生成したい。

コマンド

以下のコマンドでmodelファイルが自動生成されます。

コンソール
composer require reliese/laravel

php artisan vendor:publish --tag=reliese-models

php artisan code:models

・複数回実行しても重複されない。
・casts、fillableも生成される
・migrationsテーブルは無視される
 (config/models.php 'except'で管理される)

便利なので使ってみてください。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?