remove model to use the general one the application fetch on the first load
<?phpuseIlluminate\Database\Seeder;useIlluminate\Database\Eloquent\Model;classDatabaseSeederextendsSeeder{/** * Run the database seeds. */publicfunctionrun(){Model::unguard();// $this->call('UserTableSeeder');}}