*/ final class LocationFactory extends Factory { /** @return array */ public function definition(): array { return [ 'event_id' => Event::factory(), 'name' => fake()->randomElement([ 'Hoofdpodium', 'Bar Noord', 'Bar Zuid', 'Security Gate A', 'Backstage', 'Hospitality Tent', ]), 'address' => null, 'lat' => null, 'lng' => null, 'description' => null, 'access_instructions' => null, ]; } }