Great news! Your order #{{ $order->id }} is on its way to you.
{{-- Tracking Info Box --}}| Tracking ID | {{ $order->tracking_id }} |
| Courier | {{ $order->courier }} |
| Shipped On | {{ $order->shipped_at->format('d M Y, h:i A') }} |
| Item | Qty | Total |
|---|---|---|
| {{ $it->product_name }} ({{ $it->size ?? 'N/A' }}) | {{ $it->qty }} | Rs {{ number_format($it->price * $it->qty, 0) }} |
Subtotal: Rs {{ number_format($order->subtotal, 0) }}
Shipping: {{ $order->shipping == 0 ? 'FREE' : 'Rs '.number_format($order->shipping, 0) }}
Total: Rs {{ number_format($order->total, 0) }}
Delivering to:
{{ $order->address }}
{{ $order->city }}@if($order->state), {{ $order->state }}@endif @if($order->zip) {{ $order->zip }}@endif
{{ $order->phone }}
Track your order online anytime:
avioboots.com/track-order/{{ $order->tracking_id }}Need help? Contact us at avioboots0@gmail.com
© AVIOBOOTS — Thank you for shopping with us!