*/ class CityFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'uuid' => $this->faker->uuid(), 'name' => $this->faker->city(), ]; } }