@extends('layouts.app') @section('page_title', 'My Attendance') @section('content')
Track your daily clock-in and clock-out logs
| Date | Check In | Check Out | Work Time | Break Time | Status |
|---|---|---|---|---|---|
| {{ $item->date->format('d M, Y') }} ({{ $item->date->format('D') }}) | @if ($item->check_in) {{ $item->check_in->format('h:i A') }} @else - @endif | @if ($item->check_out) {{ $item->check_out->format('h:i A') }} @else - @endif | @if ($item->total_work_minutes) {{ floor($item->total_work_minutes / 60) }}h {{ $item->total_work_minutes % 60 }}m @else - @endif | {{ $item->total_break_minutes ?? 0 }} mins | {{ ucfirst($item->status) }} |