*/ class ElectionFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'year' => $this->faker->year(), 'candidates' => [], 'end_time' => $this->faker->dateTimeBetween('now', '+1 year'), ]; } }