| {{ __('Shift') }} | {{ __('Time') }} | {{ __('Required hours') }} | {{ __('Flexible minutes') }} | {{ __('Daily overtime limit') }} | {{ __('Monthly overtime limit') }} | {{ __('Actions') }} |
|---|---|---|---|---|---|---|
| {{ $shift->name }} | {{ substr($shift->start_time,0,5) }}–{{ $shift->end_time ? substr($shift->end_time,0,5) : '-' }} | {{ $shift->required_hours }} | {{ $shift->flexible_minutes }} | {{ $shift->max_overtime_per_day ?? '—' }} | {{ $shift->max_overtime_per_month ?? '—' }} | |
| {{ __('No Data') }} | ||||||
| {{ __('Employee') }} | {{ __('Work Shift') }} | {{ __('From') }} | {{ __('To') }} |
|---|---|---|---|
| {{ $assignment->employee?->name }} | {{ $assignment->shift?->name }} | {{ $assignment->effective_from->format('Y-m-d') }} | {{ $assignment->effective_to?->format('Y-m-d') ?? '—' }} |
| {{ __('No Data') }} | |||