Membuat Fitur Menu KJPP part 1

This commit is contained in:
2024-09-24 11:51:53 +07:00
parent 8e73269f76
commit 8b4dd34b51
6 changed files with 575 additions and 85 deletions

View File

@@ -25,6 +25,7 @@ return new class extends Migration
$table->string('postal_code');
$table->string('nomor_telepon_kantor');
$table->string('email_kantor');
$table->string('nama_pimpinan');
$table->string('nomor_hp_pimpinan');
$table->string('nama_pic_reviewer');
$table->string('nomor_hp_pic_reviewer');
@@ -32,8 +33,8 @@ return new class extends Migration
$table->string('nomor_hp_pic_admin');
$table->string('nama_pic_marketing');
$table->string('nomor_hp_pic_marketing');
$table->foreignId('ijin_usaha_id')->constrained()->onDelete('cascade');
$table->foreignId('jenis_aset_id')->constrained()->onDelete('cascade');
$table->string('ijin_usaha_id')->nullable();
$table->string('jenis_aset_id')->nullable();
$table->string('attachment');
$table->boolean('status')->default(true)->nullable();
$table->char('authorized_status', 1)->nullable();