This commit is contained in:
Pusdatin BPKD Jkt
2022-09-29 14:45:14 +07:00
parent 1447dfd7d9
commit 019f6be7f6
6 changed files with 180 additions and 9 deletions
+20
View File
@@ -0,0 +1,20 @@
<?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 BelanjaRealisasiSPD extends Eloquent
{
use HasFactory;
protected $connection = 'Samasa';
protected $table = 'SAMASA.belanja_realisasi_spd';
protected $fillable = [
"id_rsk",
"no_spd",
"tgl",
"jumlah"
];
}