*/ class ServiceFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'name' => $this->faker->word(), 'status' => ServiceStatus::NOT_INSTALLED, 'category' => ServiceCategory::DATABASE, 'type' => ServiceType::POSTGRES, 'version' => '18', 'version_track' => '18', 'driver_name' => 'postgres.18', 'desired_replicas' => 1, 'deploy_policy' => DeployPolicy::DEPENDENCY_ONLY, 'process_roles' => [], 'config' => [], ]; } }