*/ class ProfileFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'name' => fake()->unique()->word(), 'sort_order' => fake()->numberBetween(1, 10), ]; } }