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

Checkout

Order Summary

@foreach ($items as $item) @endforeach
Product Qty Total
{{ $item->product->name }} @if ($item->variant) {{ $item->variant->label() }} @endif {{ $item->quantity }} {{ \App\Models\SiteSetting::formatPrice($item->unitPrice() * $item->quantity) }}
Subtotal {{ $subtotalDisplay }}
Shipping {{ $shippingDisplay }}
Discount {{ $discountDisplay }}
Total {{ $totalDisplay }}

Payment Method

@csrf @if ($addresses->isEmpty())

Add a delivery address from your account before placing an order.

@endif @if (array_key_exists('ibft', $paymentMethods))

IBFT Details

@endif @if (array_key_exists('cod', $paymentMethods))

Cash on Delivery

Pay cash when your order is delivered. Admin approval is still required before processing.

@endif @if ($errors->any())

{{ $errors->first() }}

@endif
@endsection @push('scripts') @endpush