*/ class ProvinceFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'name' => $this->faker->name(), 'lat' => $this->faker->latitude, 'lon' => $this->faker->longitude, 'ip' => $this->faker->ipv4, 'camera_ip' => $this->faker->ipv4, ]; } }