86 lines
4.0 KiB
PHP
86 lines
4.0 KiB
PHP
<?php
|
|
|
|
return [
|
|
'sections' => [
|
|
'personal' => 'Personal Information',
|
|
'contact' => 'Contact Information',
|
|
'medical' => 'Medical Information',
|
|
'other' => 'Other Information',
|
|
'patient_info' => '1. Patient Information',
|
|
'illness' => '2. Medical History',
|
|
'surgery_notes' => '3. Surgery Notes',
|
|
'media' => '4. Patient Media',
|
|
'record_info' => 'Record Info',
|
|
],
|
|
'fields' => [
|
|
'icno' => 'National ID',
|
|
'first_name' => 'First Name',
|
|
'last_name' => 'Last Name',
|
|
'full_name' => 'Full Name',
|
|
'father_name' => 'Father Name',
|
|
'gender' => 'Gender',
|
|
'birth_date' => 'Birth Date',
|
|
'age' => 'Age',
|
|
'marital_status' => 'Marital Status',
|
|
'education' => 'Education',
|
|
'job' => 'Job',
|
|
'hand_phone' => 'Mobile',
|
|
'home_phone' => 'Home Phone',
|
|
'work_phone' => 'Work Phone',
|
|
'other_phone' => 'Other Phone',
|
|
'home_address' => 'Home Address',
|
|
'work_address' => 'Work Address',
|
|
'refered_by' => 'Referred By',
|
|
'referal_reason' => 'Referral Reason',
|
|
'doc_id' => 'Doctor ID',
|
|
'insurance' => 'Insurance',
|
|
'insurance_no' => 'Insurance No.',
|
|
'blood_pressure' => 'Blood Pressure',
|
|
'blood_sugar' => 'Blood Sugar',
|
|
'current_illness_1' => 'Current Illness (1)',
|
|
'current_illness_2' => 'Current Illness (2)',
|
|
'is_undercare' => 'Under Medical Care',
|
|
'undercare_reason' => 'Care Reason',
|
|
'is_usingdrug' => 'Using Medication',
|
|
'underdrug_reason' => 'Medication Name',
|
|
'has_alergyto' => 'Has Allergy',
|
|
'alergy_reason' => 'Allergy Reason',
|
|
'description' => 'Description',
|
|
'has_surgery_appointment' => 'Surgery Appointment',
|
|
'surgery_appointment' => 'Surgery Appointment',
|
|
'surgery_date' => 'Surgery Date',
|
|
'surgery_time' => 'Surgery Time',
|
|
'surgery_center' => 'Surgery Center',
|
|
'surgery_before' => 'Pre-surgery Notes',
|
|
'sergery_after' => 'Post-surgery Notes',
|
|
'photos_before' => 'Before Photos',
|
|
'photos_after' => 'After Photos',
|
|
'videos' => 'Videos',
|
|
'audio_files' => 'Audio Files',
|
|
'audio_speed' => 'Audio Playback Speed',
|
|
'created_at' => 'Created At',
|
|
'updated_at' => 'Last Updated',
|
|
'created_by' => 'Created By',
|
|
'updated_by' => 'Updated By',
|
|
],
|
|
'actions' => [
|
|
'surgery_appointment' => 'Surgery Appointment',
|
|
'save_appointment' => 'Save Appointment',
|
|
'delete_appointment' => 'Delete Appointment',
|
|
'appointment_saved' => 'Surgery appointment saved successfully',
|
|
'appointment_deleted' => 'Surgery appointment deleted',
|
|
'sms_sent' => 'Reminder SMS sent successfully',
|
|
'sms_failed' => 'Failed to send reminder SMS',
|
|
'api_failed' => 'Server connection failed — appointment not saved',
|
|
'save_and_print_admission' => 'Save & Print Admission',
|
|
'print_admission' => 'Print Admission',
|
|
'view_files' => 'Patient Files',
|
|
],
|
|
'validation' => [
|
|
'first_name_required' => 'First name is required.',
|
|
'last_name_required' => 'Last name is required.',
|
|
'father_name_required' => 'Father name is required.',
|
|
'hand_phone_required' => 'Mobile number is required.',
|
|
],
|
|
];
|