*/ class EvaluationRunFactory extends Factory { protected $model = EvaluationRun::class; public function definition(): array { return [ 'round_id' => Round::factory(), 'rule_set_id' => EvaluationRuleSet::factory(), 'name' => $this->faker->words(2, true), 'rules_version' => 'OFFICIAL', 'is_official' => false, 'notes' => null, ]; } }