*/ class CategoryFactory extends Factory { protected $model = Category::class; public function definition(): array { return [ 'name' => strtoupper($this->faker->bothify('CAT-??')), 'order' => $this->faker->numberBetween(1, 20), ]; } }