id(); $table->string('keterangan'); $table->date('tarikh_mula_papar'); $table->date('tarikh_tamat_papar'); $table->unsignedBigInteger('admin_id'); $table->timestamps(); $table->foreign('admin_id')->references('id')->on('users')->onDelete('cascade'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('pengumumen'); } };