51 lines
1.4 KiB
PHP
51 lines
1.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'employee_id' => 'Employee',
|
|
'department_id' => 'Department',
|
|
'position_id' => 'Position',
|
|
'shift_id' => 'Shift',
|
|
'employee_number' => 'Employee Number',
|
|
'full_name' => 'Full Name',
|
|
'national_id' => 'Nationality',
|
|
'gender' => 'Gender',
|
|
'birth_date' => 'Birth Date',
|
|
'phone' => 'Phone',
|
|
'address' => 'Address',
|
|
'employment_status' => 'Employment Status',
|
|
'hire_date' => 'Hire Date',
|
|
'termination_date' => 'Termination Date',
|
|
'notes' => 'Notes',
|
|
'profile_photo_path' => 'Profile Photo',
|
|
'status' => 'Status',
|
|
'type' => 'Type',
|
|
'start_date' => 'Start Date',
|
|
'end_date' => 'End Date',
|
|
'return_date' => 'Return Date',
|
|
'days' => 'Days',
|
|
'reason' => 'Reason',
|
|
'attachment_path' => 'Attachment',
|
|
'document_path' => 'Document',
|
|
'approved_by' => 'Approved By',
|
|
'approved_at' => 'Approved At',
|
|
'bonus_date' => 'Bonus Date',
|
|
'bonus_type' => 'Bonus Type',
|
|
'amount' => 'Amount',
|
|
'gift_date' => 'Gift Date',
|
|
'gift_name' => 'Gift Name',
|
|
'value' => 'Value',
|
|
'document_type' => 'Document Type',
|
|
'title' => 'Title',
|
|
'file_path' => 'File',
|
|
'uploaded_at' => 'Uploaded At',
|
|
'severity' => 'Severity',
|
|
'report_date' => 'Report Date',
|
|
'description' => 'Description',
|
|
'medical_institution' => 'Medical Institution',
|
|
'name' => 'Name',
|
|
'code' => 'Code',
|
|
'is_active' => 'Active',
|
|
];
|