*/ class IpUserMappingFactory extends Factory { protected $model = IpUserMapping::class; public function definition(): array { return [ 'ip_address' => $this->faker->unique()->ipv4(), 'user_name' => $this->faker->userName(), 'remark' => $this->faker->optional()->sentence(6), ]; } }