@extends('layouts.mobile') @section('title', 'Track Package') @section('content')

{{ __('mobile.track_your_package') }}

{{ __('mobile.enter_tracking_real_time') }}

@csrf
@error('tracking_code')
{{ $message }}
@enderror Find your tracking code on your booking confirmation
Quick Examples

Tap on an example to try tracking

Real-time Tracking Features
Live Location
See exactly where your package is right now
Status Updates
Get notified at every step of delivery
Agent Details
Contact information of your delivery agent
Delivery Time
Estimated delivery date and time
@auth @if(auth()->user()->orders()->count() > 0)
Your Recent Orders
View All
@foreach(auth()->user()->orders()->latest()->take(3)->get() as $order)
{{ $order->tracking_code }}
{{ $order->pickupDistrict->name }} → {{ $order->dropDistrict->name }}
{{ ucfirst(str_replace('_', ' ', $order->status)) }}
{{ $order->created_at->format('M d, Y') }} Tap to track
@endforeach
@endif @endauth
Need Help?

Your tracking code is provided when you book a courier service. You can find it in:
  • Booking confirmation email
  • SMS notification
  • Your orders page
  • Booking receipt

Tracking information is updated in real-time as your package moves through our network. Updates typically occur:
  • When package is picked up
  • At sorting facilities
  • During transit
  • Upon delivery

If your tracking hasn't updated for more than 24 hours, please contact us:
@endsection @push('scripts') @endpush