*/ class PatientTreatmentFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'registration_id' => Registration::factory(), 'treatment_id' => Treatment::factory(), 'quantity' => $this->faker->numberBetween(1, 5), ]; } }