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

Team Attendance Hub

Monitor ground deployment activity and live venue check-in logs.

Active Field Force Logs
@forelse($attendances as $log) @empty @endforelse
Employee Name Assigned Event Clock In Clock Out Status Location Validation
{{ $log->user->name }} {{ $log->exhibition->name ?? 'N/A' }} {{ $log->check_in ? \Carbon\Carbon::parse($log->check_in)->format('h:i A') : '--' }} {{ $log->check_out ? \Carbon\Carbon::parse($log->check_out)->format('h:i A') : 'Active on Site' }} {{ $log->status }} @if($log->check_in_latitude) Track GPS @else No GPS Recorded @endif
No team members checked in for duty today.
@endsection