19 lines
461 B
PHP
19 lines
461 B
PHP
<?php
|
|
|
|
return [
|
|
'sections' => [
|
|
'info' => 'Medication Information',
|
|
],
|
|
'fields' => [
|
|
'name' => 'Medication Name',
|
|
'dosage_form' => 'Dosage Form',
|
|
'strength' => 'Strength',
|
|
'quantity' => 'Quantity',
|
|
'timing' => 'Timing',
|
|
'notes' => 'Notes',
|
|
'is_default' => 'Default',
|
|
'is_active' => 'Active',
|
|
'created_at' => 'Created At',
|
|
],
|
|
];
|