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

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

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

@auth
{{ __('mobile.hello_user', ['name' => auth()->user()->name]) }}

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

{{ __('mobile.book_new_courier') }} @else
{{ __('mobile.join_customers') }}
@endauth
Quick Actions
Quick Track
@csrf
Example: TCS20250116001
@auth @if(auth()->user()->orders()->count() > 0)
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') }} Rs. {{ number_format($order->final_price) }}
@endforeach
@endif @endauth
Why Choose Top Courier Service?
Fast Delivery
Same day and next day delivery options
Secure & Safe
Your packages are insured and tracked
Real-time Tracking
Track your package every step of the way
Multiple Payment Options
COD, JazzCash, EasyPaisa, and more
Need Help?

24/7 Customer Support Available

@endsection @push('scripts') @endpush