@extends('layouts.app') @section('page_title','My Attendance') @section('page_subtitle','Clock in and clock out daily. HR can correct records where needed.') @section('content')
Clock in: {{ $todayAttendance->clock_in_at?->format('h:i A') ?? '-' }}
Clock out: {{ $todayAttendance->clock_out_at?->format('h:i A') ?? '-' }}
@elseYou have not clocked in today.
@endif| Date | Clock In | Clock Out | Status | Notes |
|---|---|---|---|---|
| {{ $record->work_date?->format('d M Y') }} | {{ $record->clock_in_at?->format('h:i A') ?? '-' }} | {{ $record->clock_out_at?->format('h:i A') ?? '-' }} | {{ ucfirst($record->status) }} | {{ $record->notes }} |
No attendance records yet. | ||||