This commit is contained in:
Pusdatin BPKD Jkt
2023-02-21 17:05:52 +07:00
parent 0f958f32b0
commit 2bc555bb5e
11 changed files with 631 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Yajra\Oci8\Eloquent\OracleEloquent as Eloquent;
class MstDauRinci extends Eloquent
{
use HasFactory;
protected $connection = 'Samasa';
protected $table = 'SAMASA.MST_DAU_RINCI';
protected $fillable = [
"name",
"grup",
];
}