@if (Auth::user()->isManager())
@if ($order->shipping->status == 0)
@elseif($order->shipping->status == 1)
@else
This order has been delivered!
@endif
@endif
@if (count($trackers) > 0)
Your Shipment Routing with current loaction is displayed below:
@foreach ($trackers->sortDesc() as $tracker)
@if ($loop->odd)
@if (strtotime("now") > strtotime($tracker->arrival_time))
{{$tracker->address}}
{{$tracker->city}}
{{$tracker->state}}
{{$tracker->country}}
Phone:+14314301153
Status: Completed
@else
{{$tracker->address}}
{{$tracker->city}}
{{$tracker->state}}
{{$tracker->country}}
Phone:+14314301153
Status: Pending
@endif
@else
@if (strtotime("now") > strtotime($tracker->arrival_time))
{{$tracker->address}}
{{$tracker->city}}
{{$tracker->state}}
{{$tracker->country}}
Phone:+14314301153
Status: Completed
@else
{{$tracker->address}}
{{$tracker->city}}
{{$tracker->state}}
{{$tracker->country}}
Phone:+14314301153
Status: Pending
@endif
@endif
@endforeach
@endif