Develop realisasi belanja
This commit is contained in:
@@ -31,8 +31,10 @@ class DbhBelanjaRealisasi extends Eloquent
|
||||
"jumlah_anggaran",
|
||||
"volume_satuan",
|
||||
"unit_satuan",
|
||||
"jumlah_realisasi",
|
||||
"volume_satuan_realisasi",
|
||||
"unit_satuan_realisasi",
|
||||
"no_sp2d",
|
||||
"realisasi_by"
|
||||
];
|
||||
}
|
||||
|
||||
@@ -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"
|
||||
];
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Yajra\Oci8\Eloquent\OracleEloquent as Eloquent;
|
||||
|
||||
class Sp2d extends Eloquent
|
||||
{
|
||||
use HasFactory;
|
||||
protected $connection = 'oracle';
|
||||
protected $table = 'NEWSIPKD.TMSP2D';
|
||||
}
|
||||
+1
-1
@@ -14,7 +14,7 @@ class User extends Authenticatable
|
||||
{
|
||||
use HasApiTokens, HasFactory, Notifiable, HasRoles;
|
||||
public $incrementing = false;
|
||||
|
||||
protected $keyType = "string";
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user