| {{ __('Employee') }} | {{ __('Max Weekly Hours') }} | {{ __('Overtime This Month') }} | {{ __('Actions') }} |
|---|---|---|---|
|
{{ $item['user']->name }}
{{ $item['user']->email }}
|
{{ $item['user']->max_weekly_hours ?? \App\Models\SystemSetting::get('max_weekly_hours', 48) }}{{ __('h') }} |
@if($item['total_overtime_minutes'] > 0)
|
|
| {{ __('No overtime tracked this month') }} | |||
| {{ __('Employee') }} | {{ __('Date') }} | {{ __('Hours') }} | {{ __('Rate') }} | {{ __('Amount') }} | {{ __('Status') }} | {{ __('Notes') }} | {{ __('Actions') }} |
|---|---|---|---|---|---|---|---|
|
|
{{ $record->date->translatedFormat('M d, Y') }} | {{ number_format($record->overtime_hours, 1) }}{{ __('h') }} |
@if($record->status === 'paid')
|
{{ $record->notes ?? '-' }} |
@if($record->status === 'pending')
|
||
| {{ __('No overtime records found') }} | |||||||