{{ __('ChronoLab Dashboard') }}

@if($role === 'Admin') {{ $role }} @endif ChronoLab Timesheet Dashboard

Track your time efficiently.

@if($role === 'Admin') @foreach ($holidayRequests as $request) {{ $request->user->name }} {{ $request->start_date }} {{ $request->end_date }} {{ $request->reason }} {{ ucfirst($request->status) }}
@csrf
@endforeach @endif @if($role === 'Technician')

{{ __('Timesheet ' . \Carbon\Carbon::parse($currentMonth . '-01')->format('F Y') ) }}

@if(\App\Models\Schedule::totalScheduledHours(auth()->id()) >= 40) @endif @foreach($timesheetsByWeek as $weekNumber => $timesheetsInWeek) @foreach($timesheetsInWeek as $timesheet) @if(\App\Models\Schedule::totalScheduledHours(auth()->id()) >= 40) @endif @endforeach @endforeach @if(\App\Models\Schedule::totalScheduledHours(auth()->id()) >= 40) @endif
Datum Start Eind W.H.O.T.Klant
{{ \Carbon\Carbon::parse($timesheet->work_date)->format('d-m-Y') }} {{ $timesheet->is_holiday_manual || $timesheet->is_holiday ? 'N/A' : $timesheet->start_time }} {{ $timesheet->is_holiday_manual || $timesheet->is_holiday ? 'N/A' : $timesheet->end_time }} {{ $timesheet->is_holiday_manual || $timesheet->is_holiday ? 'N/A' : $timesheet->worked_hours }}{{ $timesheet->is_holiday_manual || $timesheet->is_holiday ? 'N/A' : $timesheet->overtime }}{{ $timesheet->customer ?? 'N/A' }}
      Totaal Overuren {{ $currentMonthOvertime }}  

= Normal (8h) = Overtime (>8h) = Early Finish (<8h) = Holiday

Totaal huidige maand:
Totaal overuren: {{ $totalOvertimeHours }} uur | Totaal Gewerkte Uren: {{ $totalWorkedHours }} uur

Uren overzicht ({{ now()->year }})

@endif