This commit is contained in:
Pusdatin BPKD Jkt
2022-07-11 16:26:39 +07:00
parent b2c962f2b5
commit a4de789b93
22 changed files with 731 additions and 236 deletions
+14
View File
@@ -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 Sps_pendapatan extends Eloquent
{
use HasFactory;
protected $connection = 'oracle';
protected $table = 'PROKSI.SPS_PENDAPATAN';
}