ubah company

This commit is contained in:
KhatamNugraha
2024-07-12 09:09:38 +07:00
parent 100cb2e6c4
commit 95350c3598
3 changed files with 415 additions and 7 deletions

View File

@ -13,16 +13,16 @@ class Company extends Model
{
use HasFactory;
protected $connection = 'db2';
protected $table = 'STG_DB.COMPANY';
protected $primaryKey = 'ID';
protected $connection = 'pgsql';
protected $table = 'company';
protected $primaryKey = 'id';
//public $incrementing = false;
protected $fillable = [
"'ID',
'DESCRIPTION'
'COMPANY_NAME',"
"'id',
'company_code'
'company_name',"
];