@include('global.headerlinks')
@include('partials.sidebar')
@include('partials.header')

Detail History

Selected
@if(session()->has('message'))
{{ session()->get('message') }}
@elseif(session()->has('error'))
{{ session()->get('error') }}
@endif {{-- --}} @if ($data['History'] != null) @foreach ( $data['History'] as $key => $value ) @endforeach @endif
Address Message Date Time Latitude Longitude ActionActions
{{-- --}} {{$value['address'] ?? '--'}} {{$value['message'] ?? '--'}} @php $timestamp = $value['time']; echo date('Y-m-d', $timestamp/1000); @endphp @php $timestamp = $value['time']; $time = date('h:i:s A', $timestamp / 1000); echo $time; @endphp {{$value['lat'] ?? '--'}} {{$value['lng'] ?? '--'}} Actions
{{-- --}} @include('partials.footer')
@include('global.footerlinks')