*/ class DunFactory extends Factory { /** * @return array */ public function definition(): array { return [ 'election_id' => Election::factory(), 'code' => strtoupper(fake()->unique()->bothify('N##')), 'name' => fake()->city(), ]; } }