id(); $table->string('nom')->unique(); $table->text('description')->nullable(); $table->string('couleur', 7)->nullable()->default('#3B82F6'); $table->string('icone', 50)->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('services'); } };