after('nama', function (Blueprint $table) { $table->integer('kawasan_id'); $table->integer('taman_id')->nullable(); $table->integer('jalan_id')->nullable(); }); }); } /** * Reverse the migrations. */ public function down(): void { // Schema::table('penempatans', function (Blueprint $table) { $table->dropColumn('kawasan_id'); $table->dropColumn('taman_id'); $table->dropColumn('jalan_id'); }); } };