'admin@example.com'], [ 'name' => 'Admin User', 'email' => 'admin@example.com', 'password' => Hash::make('password'), 'email_verified_at' => now(), ] ); // Create test user User::firstOrCreate( ['email' => 'test@example.com'], [ 'name' => 'Test User', 'email' => 'test@example.com', 'password' => Hash::make('password'), 'email_verified_at' => now(), ] ); // Note: Company and Transaction data is now synced from the backend // via TransformDataPoolToProduction job, not seeded manually } }