52 lines
1.5 KiB
PHP
52 lines
1.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'employee_list' => [
|
|
'title' => 'Employee List',
|
|
'heading' => 'Employee Directory',
|
|
'generated' => 'Generated',
|
|
'number' => '#',
|
|
'name' => 'Name',
|
|
'department' => 'Department',
|
|
'position' => 'Position',
|
|
'shift' => 'Shift',
|
|
'status' => 'Status',
|
|
'phone' => 'Phone',
|
|
],
|
|
|
|
'employee_profile' => [
|
|
'title' => 'Employee Profile — :name',
|
|
'department' => 'Department',
|
|
'position' => 'Position',
|
|
'shift' => 'Shift',
|
|
'status' => 'Status',
|
|
'phone' => 'Phone',
|
|
'hire_date' => 'Hire Date',
|
|
'termination' => 'Termination',
|
|
'vacation_taken' => 'Vacation Taken',
|
|
'remaining' => 'Remaining',
|
|
'sick_leaves' => 'Sick Leaves',
|
|
'reports' => 'Reports',
|
|
],
|
|
|
|
'leave_summary' => [
|
|
'title' => 'Leave Summary — :name',
|
|
'heading' => 'Leave Summary',
|
|
'annual_taken' => 'Annual taken',
|
|
'remaining' => 'Remaining',
|
|
'sick_leaves' => 'Sick leaves',
|
|
'vacations' => 'Vacations',
|
|
'sick_leaves_heading' => 'Sick Leaves',
|
|
'start' => 'Start',
|
|
'end' => 'End',
|
|
'days' => 'Days',
|
|
'type' => 'Type',
|
|
'status' => 'Status',
|
|
'institution' => 'Institution',
|
|
'no_vacation_records' => 'No vacation records.',
|
|
'no_sick_leave_records' => 'No sick leave records.',
|
|
],
|
|
];
|