Update Rekening Tamsil dan TPG

This commit is contained in:
izuddin
2025-08-07 10:30:44 +07:00
parent a0c2774e81
commit cb273e1256
7 changed files with 255 additions and 70 deletions
+4
View File
@@ -18,4 +18,8 @@ class PendapatanRealisasi extends Eloquent
'retur','bersih','tw','gelombang','potongan_pph','potongan_jkn'
];
public function hasSts() {
return $this->hasMany('App\Models\PendapatanRealisasiSts','id_pendapatan_realisasi','id');
}
}
+15
View File
@@ -0,0 +1,15 @@
<?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 PendapatanRealisasiSts extends Eloquent
{
use HasFactory;
protected $connection = 'Samasa';
protected $table = 'pendapatan_realisasi_sts';
protected $guarded = [];
}