@extends('layouts.app') @section('title', 'Checkout') @section('content')

Checkout

@csrf

Delivery Method

Delivery Address

@error('delivery_address')

{{ $message }}

@enderror
@error('delivery_city')

{{ $message }}

@enderror
@error('delivery_postal_code')

{{ $message }}

@enderror

Payment Method

Order Notes (Optional)

Order Summary

@foreach($cartItems as $item)
@if($item->product->image_url) {{ $item->product->name }} @else
📦
@endif

{{ $item->product->name }}

Qty: {{ $item->quantity }}

R {{ number_format($item->quantity * $item->product->price, 2) }}

@endforeach
Subtotal R {{ number_format($subtotal, 2) }}
VAT (15%) R {{ number_format($tax, 2) }}
Delivery Calculated based on location
Total R {{ number_format($total, 2) }}
Back to Cart
@endsection