@extends('layouts.app') @section('content')

Punch In-Out Summary

Track your historical clock-in coordinates and daily shift data.

{{ date('F Y') }}
Total Logs

{{ $attendances->count() }} Days Marked

Current month execution cycles.
GPS Lock

100% Verified

All coordinates dynamically tracked.
Shift Rule

Standard Loop

Managed via Regional Headquarters.
Monthly Punch Details
@forelse($attendances as $log) @empty @endforelse
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.
@endsection