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

Checkout

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

Shipping Details

Since every pair is made to order, please share your foot measurements or any special sizing requirements. Our craftsman will use these to make your perfect fit.

Payment Method

{{-- Trust badges --}}
100% Secure No Advance Payment Pay on Delivery

Order Summary

@foreach($items as $item)
{{ $item['name'] }} × {{ $item['qty'] }} Rs {{ number_format($item['price'] * $item['qty'], 0) }}
@endforeach
SubtotalRs {{ number_format($subtotal, 0) }}
Shipping{{ $shipping == 0 ? 'FREE' : 'Rs '.number_format($shipping, 0) }}
TotalRs {{ number_format($total, 0) }}
← Back to cart
@endsection