This commit is contained in:
Pusdatin BPKD Jkt
2022-07-12 16:28:20 +07:00
parent a4de789b93
commit 2624b4e1e6
16 changed files with 423 additions and 431 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ class DbhPendapatanRealisasi extends Eloquent
protected $table = 'dbh_pendapatan_realisasi';
protected $fillable = [
'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'
'rkud_tgl','rkud_no_sts','rkud_kode_akun','rkud_nama_akun','rkud_jumlah','id_sps','kode_rekening_sps','nama_rekening_sps'
];
}
+17
View File
@@ -0,0 +1,17 @@
<?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 Siesetpembayaran extends Eloquent
{
use HasFactory;
use Uuids;
protected $connection = 'oracle';
protected $table = 'NEWSIPKD.SI_ESET_PEMBAYARAN';
protected $fillable = [];
}