@extends('layouts.guest') @section('content')

Tracking ----> {{$tracker->tracking_id}}

My Orders / Tracking
@if (session('error'))
{{ session('error') }}
@endif @if (session('success'))
{{ session('success') }}
@endif

Current Location

{{$tracker->current_location}}

Origin Address

{{$tracker->origin_address}}

Destination Address

{{$tracker->destination_address}}

Tracking ID

{{$tracker->tracking_id}}

Order ID: {{$tracker->order_id}}
Estimated Delivery time:
{{$tracker->estimated_delivery_time}}
Shipping BY:
{{$tracker->shipping_by}}, | +{{$tracker->shipping_phone}}
Status:
{{$tracker->current_status}}
Tracking ID#:
{{$tracker->tracking_id}}
@if ($tracker->current_status == $tracker->status_1)
{{$tracker->status_1}}
{{$tracker->status_2}}
{{$tracker->status_3}}
{{$tracker->status_4}}
@endif @if ($tracker->current_status == $tracker->status_2)
{{$tracker->status_1}}
{{$tracker->status_2}}
{{$tracker->status_3}}
{{$tracker->status_4}}
@endif @if ($tracker->current_status == $tracker->status_3)
{{$tracker->status_1}}
{{$tracker->status_2}}
{{$tracker->status_3}}
{{$tracker->status_4}}
@endif @if ($tracker->current_status == $tracker->status_4)
{{$tracker->status_1}}
{{$tracker->status_2}}
{{$tracker->status_3}}
{{$tracker->status_4}}
@endif

  • {{$tracker->product_description}}

    {{$tracker->product_price}}

Important Notifications

{{$tracker->important_notification}}


Track again scan for code {!! QrCode::size(100)->generate($tracker->tracking_id); !!}
@endsection