*/ class CategoryFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'name' => fake()->sentence(rand(1,2), false), 'slug' => Str::slug(fake()->sentence(rand(1,2), false)) ]; } }