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