update filed penilai, surveyor dan tambah buton revisi

This commit is contained in:
majid
2024-09-20 15:05:53 +07:00
parent f0d60d68d1
commit 00f568fb6d
8 changed files with 429 additions and 289 deletions

View File

@@ -19,9 +19,9 @@ return new class () extends Migration {
$table->foreignIdFor(Teams::class);
$table->datetime('tanggal_kunjungan');
$table->text('keterangan')->nullable();
$table->char('status');
$table->foreignIdFor(Permohonan::class)->nullable();
$table->integer('penilaian_id');
$table->string('status')->nullable();
$table->string('nomor_registrasi')->references('nomor_registrasi')->on(Permohonan::class)->nullable();
$table->integer('penilaian_id')->nullable();
$table->integer('surveyor_id')->nullable();
$table->integer('penilai_surveyor_id')->nullable();
$table->timestamps();