Add labels for various fields across HR resources to improve localization and user experience.
This commit is contained in:
@@ -15,18 +15,25 @@ class EmployeeDocumentInfolist
|
||||
TextEntry::make('employee.id')
|
||||
->label(__('hr.fields.employee')),
|
||||
TextEntry::make('document_type')
|
||||
->label(__('hr.fields.document_type'))
|
||||
->badge(),
|
||||
TextEntry::make('title'),
|
||||
TextEntry::make('file_path'),
|
||||
TextEntry::make('title')
|
||||
->label(__('hr.fields.title')),
|
||||
TextEntry::make('file_path')
|
||||
->label(__('hr.fields.file_path')),
|
||||
TextEntry::make('uploaded_at')
|
||||
->label(__('hr.fields.uploaded_at'))
|
||||
->dateTime(),
|
||||
TextEntry::make('created_at')
|
||||
->label(__('hr.fields.created_at'))
|
||||
->dateTime()
|
||||
->placeholder('-'),
|
||||
TextEntry::make('updated_at')
|
||||
->label(__('hr.fields.updated_at'))
|
||||
->dateTime()
|
||||
->placeholder('-'),
|
||||
TextEntry::make('deleted_at')
|
||||
->label(__('hr.fields.deleted_at'))
|
||||
->dateTime()
|
||||
->visible(fn (EmployeeDocument $record): bool => $record->trashed()),
|
||||
]);
|
||||
|
||||
Reference in New Issue
Block a user