Update Module Permohonan

- Update Automaticly get branch id by user login
- change static status permohonan to dynamic and database base
- update create permohonan, update selection debiture to table base
This commit is contained in:
Daeng Deni Mardaeni
2024-09-03 13:41:05 +07:00
parent 3c59943a08
commit be47e0678a
8 changed files with 266 additions and 78 deletions

View File

@@ -0,0 +1,38 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
use Modules\Lpj\Models\DokumenJaminan;
use Modules\Lpj\Models\Permohonan;
return new class extends Migration {
/**
* Run the migrations.
*/
public function up()
: void
{
Schema::create('permohonan_jaminan', function (Blueprint $table) {
$table->id();
$table->foreignIdFor(Permohonan::class)->constrained('permohonan');
$table->foreignIdFor(DokumenJaminan::class)->constrained('dokumen_jaminan');
$table->boolean('status')->default(true)->nullable();
$table->timestamps();
$table->softDeletes();
$table->unsignedBigInteger('created_by')->nullable();
$table->unsignedBigInteger('updated_by')->nullable();
$table->unsignedBigInteger('deleted_by')->nullable();
});
}
/**
* Reverse the migrations.
*/
public function down()
: void
{
Schema::dropIfExists('permohonan_jaminan');
}
};