Merge remote-tracking branch 'origin/staging' into origin/production

This commit is contained in:
Linksehat Staging Server
2024-01-06 09:59:46 +07:00
45 changed files with 785 additions and 319 deletions

View File

@@ -57,6 +57,7 @@ class Member extends Model
"endorsement_date",
"members_effective_date",
"members_expire_date",
"employee_status",
"activation_date",
"terminated_date",
"remarks",

View File

@@ -23,6 +23,9 @@ class RequestDailyMonitoring extends Model
'lab_date',
'provider',
'examination',
'created_by',
'updated_by',
'deleted_by',
];
protected $appends = ['medical_plan', 'non_medikamentosa_plan', 'document', 'discharge_date'];

View File

@@ -30,7 +30,11 @@ class RequestLog extends Model
'source',
'claim_id',
'organization_id',
'code'
'code',
'approved_by',
'approved_at',
'approved_final_log_by',
'approved_final_log_at',
];
protected $hidden = [

View File

@@ -19,6 +19,9 @@ class RequestLogBenefit extends Model
'amount_not_approved',
'excess_paid',
'keterangan',
'created_by',
'updated_by',
'deleted_by',
];
public function benefit(){

View File

@@ -13,6 +13,9 @@ class RequestLogMedicine extends Model
'request_log_id',
'medicine',
'price',
'created_by',
'updated_by',
'deleted_by',
];
protected $hidden = [

View File

@@ -24,6 +24,7 @@ class User extends Authenticatable
'person_id',
'name',
'email',
'username',
'password',
'phone',
'otp',