@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