*/ class StationFactory extends Factory { protected $model = Station::class; public function definition(): array { return [ 'name' => 'BL' . fake()->unique()->numerify('##') . fake()->randomElement(['U', 'B', 'W', 'HB']), 'description' => null, ]; } }