Develop realisasi belanja

This commit is contained in:
Pusdatin BPKD Jkt
2022-07-25 16:25:51 +07:00
parent f9059ad5d5
commit 454a9022ab
23 changed files with 491 additions and 170 deletions
+22
View File
@@ -0,0 +1,22 @@
<?php
namespace App\Models;
use App\Traits\Uuids;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Yajra\Oci8\Eloquent\OracleEloquent as Eloquent;
class DbhBelanjaRealisasiDetail extends Eloquent
{
use HasFactory;
protected $connection = 'Samasa';
protected $table = 'SAMASA.dbh_belanja_realisasi_detail';
protected $fillable = [
"dbh_belanja_realisasi_id",
"jumlah_realisasi",
"volume_satuan_realisasi",
"unit_satuan_realisasi",
"no_sp2d",
"created_by"
];
}