id(); $table->string('title'); $table->string('slug')->unique(); $table->string('icon', 10)->default(''); $table->text('excerpt')->default(''); $table->longText('description')->nullable(); $table->json('tags')->nullable(); $table->unsignedSmallInteger('sort_order')->default(0); $table->boolean('is_active')->default(true); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('services'); } };