*/ class BonusScoreDefinitionFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'name' => $this->faker->word.$this->faker->word.$this->faker->word, 'max_score' => $this->faker->randomNumber(2), 'weight' => $this->faker->randomFloat(2, 0, 2), ]; } }