*/ class TreatmentFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'name' => $this->faker->word, 'description' => $this->faker->text, 'cost' => $this->faker->randomFloat(2, 100, 1000), ]; } }