create(); $this->call(ImportEntitySeeder::class); // User::factory(10)->create(); // Ensure a default test user exists (idempotent) \App\Models\User::query()->updateOrCreate( ['email' => 'test@example.com'], [ 'name' => 'Test User', 'password' => Hash::make('password'), 'email_verified_at' => now(), ] ); $this->call([ AccountTypeSeeder::class, PaymentSettingSeeder::class, PersonSeeder::class, SegmentSeeder::class, ActionSeeder::class, EventSeeder::class, ImportTemplateSeeder::class, TestUserSeeder::class, ProductionUserSeeder::class, AdditionalProductionUsersSeeder::class, ]); } }