@extends('layouts.app') @section('title', 'Order Detail — Jumia Clone') @section('content')
{{-- Back button --}}

Order Detail

{{-- Loading --}}
{{-- Order info bar --}}

Order Number

{{-- Tracking timeline --}}

Order Tracking

{{-- Vertical line --}}
@foreach([ [0, '🕐', 'Order Placed', 'Your order has been received'], [1, '✅', 'Order Confirmed', 'Seller confirmed your order'], [2, '📦', 'Processing', 'Your items are being prepared'], [3, '🚚', 'Shipped', 'Your order is on the way'], [5, '🏠', 'Delivered', 'Delivered to your address'], ] as [$statusVal, $icon, $label, $desc])
{{ $icon }}

{{ $label }}

{{ $desc }}

@endforeach
{{-- Cancelled / Returned state --}}
{{ '❌' }}

If you paid, your refund will be processed within 3–5 business days.

{{-- Items --}}

Items Ordered

{{-- Delivery address --}}

Delivery Address

{{-- Order totals --}}

Payment Summary

Subtotal
Coupon ()
Shipping
Total Paid
{{-- Actions --}}
Continue Shopping
@endsection