@extends('layouts.app') @section('title', 'My Orders & Tracking') @section('content')
Home / My Account / Orders

My Order History

Track current shipments and view previous footwear purchases.

Shop New Drops →
@if($orders->isEmpty())
📦

No Orders Found

You haven't placed any footwear orders yet. Start building your sneaker rotation!

Explore All Footwear
@else
@foreach($orders as $order)
{{ $order->order_number }} · {{ $order->created_at->format('d M Y, h:i A') }}
{{ $order->status_label }} {{ $order->payment_status }}
@foreach($order->items as $item) @php($img = $item->product?->primaryImage())
@if($img) @else
👟
@endif

{{ $item->product_name }}

@if($item->size) Size: {{ $item->size }} @endif @if($item->color) · {{ $item->color }} @endif

₹{{ number_format($item->unit_price, 2) }} × {{ $item->quantity }}

@endforeach
Total Paid: ₹{{ number_format($order->grand_total, 2) }} @if($order->tracking_number) ({{ $order->courier_name ?? 'Courier' }}: {{ $order->tracking_number }}) @endif
@endforeach
{{ $orders->links() }}
@endif @endsection