28 lines
920 B
PHP
28 lines
920 B
PHP
<?php
|
|
|
|
return [
|
|
'sections' => [
|
|
'info' => 'Prescription Info',
|
|
'medications' => 'Select Medications',
|
|
'content' => 'Prescription Content',
|
|
],
|
|
'fields' => [
|
|
'patient' => 'Patient',
|
|
'doctor' => 'Doctor',
|
|
'issue_date' => 'Issue Date',
|
|
'issue_datetime' => 'Issue Date & Time',
|
|
'medication_ids' => 'Prescribed Medications',
|
|
'content' => 'Prescription Content',
|
|
'created_by' => 'Created By',
|
|
'created_at' => 'Created At',
|
|
],
|
|
'actions' => [
|
|
'create' => 'New Prescription',
|
|
'saved' => 'Prescription saved successfully',
|
|
'save_and_print' => 'Save & Print',
|
|
'print_prescription' => 'Print Prescription',
|
|
'print_admission' => 'Print Admission',
|
|
'print_lab' => 'Print Lab Order',
|
|
],
|
|
];
|