string('service_type')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('services', function (Blueprint $table) { $table->dropColumn('service_type'); }); } };