29 lines
997 B
PHP
29 lines
997 B
PHP
<?php
|
|
|
|
return [
|
|
'sections' => [
|
|
'visit_info' => 'Visit Information',
|
|
'financial_info' => 'Financial Information',
|
|
'treatment_details' => 'Treatment Details',
|
|
],
|
|
'fields' => [
|
|
'patient' => 'Patient',
|
|
'visit_date' => 'Visit Date',
|
|
'visit_time' => 'Visit Time',
|
|
'doctor' => 'Doctor',
|
|
'treatment' => 'Service / Treatment',
|
|
'treatment_cost' => 'Treatment Cost',
|
|
'paid_amount' => 'Paid Amount',
|
|
'remained_amount' => 'Remaining Balance',
|
|
'payment_type' => 'Payment Method',
|
|
'treatment_description' => 'Treatment Description',
|
|
'currency' => 'IRR',
|
|
'created_by' => 'Created By',
|
|
'created_at' => 'Created At',
|
|
],
|
|
'actions' => [
|
|
'create' => 'New Visit',
|
|
'saved' => 'Visit saved successfully',
|
|
],
|
|
];
|