@extends('layouts.app') @section('title', $employee->full_name . ' — Attendance History') @section('breadcrumbs')
@endsection @section('content'){{ $employee->employee_code }} · {{ $employee->department?->name ?? 'No Department' }} · {{ $employee->designation?->name ?? '' }}
| Date | Clock In | Clock Out | Hours | Overtime | Status | Late | Source |
|---|---|---|---|---|---|---|---|
| {{ $dateObj->format('d M, D') }} | @if($record && $record->clock_in) {{ $record->formatted_clock_in }} @else — @endif | {{ $record ? $record->formatted_clock_out : '—' }} | {{ $record ? $record->formatted_total_hours : '—' }} | {{ $record && $record->overtime_hours > 0 ? $record->overtime_hours . 'h' : '—' }} | @if($record) {{ $record->status_label }} @else — @endif | @if($record && $record->is_late) {{ $record->late_minutes }}m @else — @endif | {{ $record ? $record->source_label : '—' }} |