*/ class ServiceFactory extends Factory { protected $model = Service::class; public function definition(): array { return [ 'nom' => fake()->unique()->words(2, true), 'description' => fake()->sentence(), 'couleur' => fake()->hexColor(), 'icone' => 'folder', ]; } }