@if (session()->has('message'))
{{ session('message') }}
@endif

Fill the form below to track your shipping

As a Goldtrustx customer you're entitled to shipment tracking. Once your order has been shipped, we provide you with the routes to be used, you can track the current location of your order by entering your shipment tracking code. Feel free to contact us at any point with regards to your order. Thank you.

@error('code') {{ $message }} @enderror
{!! $status_text !!}
Loading...

@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))

Arrival Time: {{date('l d M, Y', strtotime($tracker->arrival_time))}} at {{date('h:i A', strtotime($tracker->arrival_time))}}

{{$tracker->address}}
{{$tracker->city}}
{{$tracker->state}}
{{$tracker->country}}
Phone:+14314301153
Status: Completed
@else

Arrival Time: {{date('l d M, Y', strtotime($tracker->arrival_time))}} at {{date('h:i A', strtotime($tracker->arrival_time))}}

{{$tracker->address}}
{{$tracker->city}}
{{$tracker->state}}
{{$tracker->country}}
Phone:+14314301153
Status: Pending
@endif @else @if (strtotime("now") > strtotime($tracker->arrival_time))

Departure Time: {{date('l d M, Y', strtotime($tracker->departure_time))}} at {{date('h:i A', strtotime($tracker->departure_time))}}

{{$tracker->address}}
{{$tracker->city}}
{{$tracker->state}}
{{$tracker->country}}
Phone:+14314301153
Status: Completed
@else

Departure Time: {{date('l d M, Y', strtotime($tracker->departure_time))}} at {{date('h:i A', strtotime($tracker->departure_time))}}

{{$tracker->address}}
{{$tracker->city}}
{{$tracker->state}}
{{$tracker->country}}
Phone:+14314301153
Status: Pending
@endif @endif @endforeach @endif