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