Membuat tampilan menu master ijin usaha

This commit is contained in:
2024-09-18 11:06:17 +07:00
parent b2b7559ed0
commit 2041b38980
16 changed files with 943 additions and 20 deletions

View File

@@ -0,0 +1,28 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('ijin_usaha', function (Blueprint $table) {
$table->id();
$table->string('nama_ijin_usaha');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('ijin_usaha');
}
};

View File

@@ -0,0 +1,49 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('kjpp', function (Blueprint $table) {
$table->id();
$table->string('nomor');
$table->string('nama_kjpp');
$table->string('kantor_pusat');
$table->string('nomor_ijin_usaha');
$table->string('kota');
$table->date('kerjasama_sejak');
$table->text('alamat_kantor');
$table->string('no_tlp_kantor', 15);
$table->string('alamat_email');
$table->string('nama_pimpinan_kantor');
$table->string('no_hp_pimpinan', 15);
$table->string('nama_pic_reviewer');
$table->string('no_pic_reviewer', 15);
$table->string('nama_pic_admin');
$table->string('no_pic_admin', 15);
$table->string('nama_pic_marketing');
$table->string('no_pic_marketing', 15);
$table->json('ijin_usaha');
$table->json('pengalaman');
$table->string('company_name');
$table->string('ijin_ijin');
$table->string('npwp');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('kjpp');
}
};