Class 'UserTableSeeder' does not exist - Laravel 5.0 [php artisan db:seed]

前端 未结 4 984
无人共我
无人共我 2020-12-24 01:05

I\'m trying a basic php artisan db:seed after migrating my database but it keeps returning the title error in cmd -[ReflectionException] Class \'UserTableSeeder\' does not e

4条回答
  •  一向
    一向 (楼主)
    2020-12-24 01:21

    Try changing

      $this->call('UserTableSeeder');
    

    to

      $this->call(UserTableSeeder::class);
    

    and try running

     composer dump-autoload
    

提交回复
热议问题