id(); $table->string('identifier')->unique(); $table->string('name'); $table->string('description')->nullable(); $table->string('url'); $table->string('icon')->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('services'); } };