{{ $company->name }} | Generated: {{ now()->format('F d, Y - H:i') }}
| Date/Time | Site/Route | Location | Method | Status | Caller | Notes |
|---|---|---|---|---|---|---|
|
{{ $checkin->created_at->format('M d, Y') }} {{ $checkin->created_at->format('H:i') }} |
@if($checkin->schedule)
Static {{ $checkin->schedule->site->name }} #{{ $checkin->schedule->duty_number }} @elseif($checkin->patrollerSchedule) Patrol {{ $checkin->patrollerSchedule->route->name }} #{{ $checkin->patrollerSchedule->id }} @else Unknown @endif |
@if($checkin->location_reported)
π {{ $checkin->location_reported }}
@endif
@if($checkin->latitude && $checkin->longitude)
GPS: {{ number_format($checkin->latitude, 6) }},
{{ number_format($checkin->longitude, 6) }}
@endif
@if($checkin->maps_link)
πΊοΈ Map Link
@endif
@if(!$checkin->location_reported && !$checkin->latitude && !$checkin->maps_link)
No location
@endif
|
{{ ucfirst($checkin->checkin_type) }} | @if($checkin->is_verified) Verified @else Unverified @endif | {{ $checkin->user?->name ?? 'System' }} | {{ $checkin->notes ?: '--' }} |