@extends('layouts.app') @section('page_title','Attendance') @section('page_subtitle','Record and review daily staff attendance.') @section('content')
| Date | Employee | Clock In | Clock Out | Status | Notes |
|---|---|---|---|---|---|
| {{ $record->work_date?->format('d M Y') }} | {{ $record->user?->name }} | {{ $record->clock_in_at?->format('h:i A') ?? '-' }} | {{ $record->clock_out_at?->format('h:i A') ?? '-' }} | {{ ucfirst($record->status) }} | {{ $record->notes }} |
No attendance records. | |||||