{{ now()->format('l, d M Y') }}
@if(!$log)You haven't clocked in today.
@elseif(!$log->clock_out_at)Clocked in at
{{ $log->clock_in_at->format('h:i A') }}
@if($log->status === 'late') Late @endif @elseToday's hours
{{ $log->clock_in_at->format('h:i A') }} – {{ $log->clock_out_at->format('h:i A') }}
{{ round($log->duration_minutes / 60, 1) }} hrs worked
@endif| Date | Clock In | Clock Out | Status |
|---|---|---|---|
| {{ $h->date->format('d M') }} | {{ $h->clock_in_at->format('h:i A') }} | {{ $h->clock_out_at?->format('h:i A') ?? '—' }} | {{ ucfirst(str_replace('_', ' ', $h->status)) }} |
| No attendance recorded yet this month. | |||