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