Update develop realisasi belanja
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
<?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 DbhBelanjaRealisasi extends Eloquent
|
||||
{
|
||||
use HasFactory;
|
||||
use Uuids;
|
||||
protected $connection = 'Samasa';
|
||||
protected $table = 'SAMASA.dbh_belanja_realisasi';
|
||||
protected $fillable = [
|
||||
"tahun_anggaran",
|
||||
"jenis_belanja",
|
||||
"sub_jenis_belanja",
|
||||
"kode_program",
|
||||
"nama_program",
|
||||
"kode_skpd",
|
||||
"nama_skpd",
|
||||
"kode_kegiatan",
|
||||
"nama_kegiatan",
|
||||
"kode_sub_kegiatan",
|
||||
"nama_sub_kegiatan",
|
||||
"kode_rsk",
|
||||
"nama_rsk",
|
||||
"kode_rekening",
|
||||
"nama_rekening",
|
||||
"jumlah_anggaran",
|
||||
"volume_satuan",
|
||||
"unit_satuan",
|
||||
"volume_satuan_realisasi",
|
||||
"unit_satuan_realisasi",
|
||||
"realisasi_by"
|
||||
];
|
||||
}
|
||||
@@ -11,7 +11,7 @@ class DbhPendapatanRealisasi extends Eloquent
|
||||
use HasFactory;
|
||||
use Uuids;
|
||||
protected $connection = 'Samasa';
|
||||
protected $table = 'dbh_pendapatan_realisasi';
|
||||
protected $table = 'SAMASA.dbh_pendapatan_realisasi';
|
||||
protected $fillable = [
|
||||
'tahun','simtrad4_uraian','simtrad4_kotor','simtrad4_potongan','simtrad4_bersih','simtrad4_sp2d_bun',
|
||||
'rkud_tgl','rkud_no_sts','rkud_kode_akun','rkud_nama_akun','rkud_jumlah','id_sps','kode_rekening_sps','nama_rekening_sps'
|
||||
|
||||
Reference in New Issue
Block a user