string('detail_nama_pimpinan')->nullable()->after('nama_pimpinan'); $table->string('detail_nomor_hp_pimpinan')->nullable()->after('nomor_hp_pimpinan'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('kjpp', function (Blueprint $table) { $table->dropColumn('detail_nama_pimpinan'); $table->dropColumn('detail_nomor_hp_pimpinan'); }); } };