id(); $table->string('title'); $table->string('slug')->unique(); $table->string('summary'); $table->text('description'); $table->string('cover_image_path')->nullable(); $table->string('cover_image_alt')->nullable(); $table->integer('sort_order')->default(0)->index(); $table->boolean('is_featured')->default(false)->index(); $table->timestamp('published_at')->nullable()->index(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('services'); } };