@extends('main') @section('content')

QR Journey Report


@foreach($data as $i => $value) @endforeach
S/N QR Code Latitude Longitude Date & Time Action
{{ $i+1 }} {{ basename($value->qrcode) }} {{ $value->latitude }} {{ $value->longitude }} {{ $value->created_at }}

@foreach($data as $scan)
Lat: {{ $scan->latitude ?? 'N/A' }}
Lng: {{ $scan->longitude ?? 'N/A' }}
{{ \Carbon\Carbon::parse($scan->created_at)->format('d-M-Y h:i A') }}
@if(!$loop->last) @endif @endforeach

Map View

@stop @section('script') @stop