LoginSignup
2
3

More than 5 years have passed since last update.

Laravelの「php artisan db:seed」で「Class ****Seeder does not exist」が発生

Last updated at Posted at 2018-03-16

起きたこと

新しいシーディングクラスを作成して、「php artisan db:seed」を実行したら「Class ****Seeders does not exist」が発生

環境

vagrant homesteadサーバ
PHP 7.2.2
Composer version 1.6.3
Laravel Framework 5.5.35

原因

追加したシーディングクラスがautoloadされるクラスに定義されていなかった

対応

以下のコマンド実行して、autoloadされるクラスに定義してあげる

composer dump-autoload
2
3
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
2
3