*/ class OperationFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'kind' => OperationKind::SERVICE_DEPLOY, 'target_type' => (new Service)->getMorphClass(), 'target_id' => Service::factory(), 'status' => OperationStatus::PENDING, ]; } }