@extends('layouts.app') @section('title', 'Checkout — Jumia Clone') @section('content')
{{-- Header --}}

Checkout

{{-- Progress steps --}}
@foreach(['Address', 'Delivery', 'Payment'] as $i => $label)
{{ $i + 1 }}
@if($i < 2)
@endif
@endforeach
{{-- ── Left: Steps ── --}}
{{-- Step 1: Address --}}

1 Delivery Address

{{-- Address list --}}
{{-- No addresses --}}

No saved addresses yet

{{-- Add new address toggle --}}
{{-- Step 2: Delivery options --}}

2 Delivery Options

@foreach([ ['value' => 'standard', 'label' => 'Standard Delivery', 'time' => '2–5 business days', 'price' => 'Free above ₦10,000', 'icon' => '🚚'], ['value' => 'express', 'label' => 'Express Delivery', 'time' => 'Next business day', 'price' => '₦1,500', 'icon' => '⚡'], ] as $opt) @endforeach
{{-- Notes --}}
{{-- Step 3: Payment --}}

3 Payment

P

Paystack

Pay securely with card, bank transfer or USSD

F

Flutterwave

Coming soon

{{-- Security note --}}
Your payment details are encrypted and secure. We never store your card information.
{{-- ── Right: Order Summary ── --}}
@endsection