@extends('layouts.app') @section('title', 'My Attendance') @section('breadcrumbs')
@endsection @section('content'){{ \Carbon\Carbon::createFromDate($year, $month, 1)->format('F Y') }}
| Date | Clock In | Clock Out | Hours | Overtime | Status | Late |
|---|---|---|---|---|---|---|
| {{ $dateObj->format('d M, D') }} | {{ $record ? $record->formatted_clock_in : '—' }} | {{ $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 |