*/ class PatientFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'name' => $this->faker->name, 'gender' => $this->faker->randomElement(['m', 'f']), 'birth_date' => $this->faker->date(), 'address' => $this->faker->address, 'phone' => $this->faker->phoneNumber, ]; } }