Add labels for various fields across HR resources to improve localization and user experience.

This commit is contained in:
Mekan1206
2026-08-02 20:10:48 +05:00
parent 8147f23750
commit e3ec83686c
52 changed files with 363 additions and 26 deletions

View File

@@ -13,26 +13,35 @@ class ShiftInfolist
{
return $schema
->components([
TextEntry::make('name'),
TextEntry::make('code'),
TextEntry::make('name')
->label(__('hr.fields.name')),
TextEntry::make('code')
->label(__('hr.fields.code')),
TextEntry::make('starts_at')
->label(__('hr.fields.starts_at'))
->time()
->placeholder('-'),
TextEntry::make('ends_at')
->label(__('hr.fields.ends_at'))
->time()
->placeholder('-'),
TextEntry::make('description')
->label(__('hr.fields.description'))
->placeholder('-')
->columnSpanFull(),
IconEntry::make('is_active')
->label(__('hr.fields.status'))
->boolean(),
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 (Shift $record): bool => $record->trashed()),
]);