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
Try changing
$this->call('UserTableSeeder');
to
$this->call(UserTableSeeder::class);
and try running
composer dump-autoload