@extends('layouts.app') @section('content')
Track your historical clock-in coordinates and daily shift data.
| Date | Exhibition Assignment | Clock In | Clock Out | Status |
|---|---|---|---|---|
| {{ \Carbon\Carbon::parse($log->date)->format('d M, Y') }} | {{ $log->exhibition_title ?? 'Field Counter' }} 📍 {{ $log->exhibition_venue ?? 'On-Site' }}, {{ $log->exhibition_city ?? '' }} | {{ $log->check_in ? \Carbon\Carbon::parse($log->check_in)->format('h:i A') : '--:--' }} | @if($log->check_out) {{ \Carbon\Carbon::parse($log->check_out)->format('h:i A') }} @else Active Shift @endif | @if($log->check_out) Present @else {{ $log->status ?? 'Ongoing' }} @endif |
| No historical records verified for this month loop. | ||||