@extends('layouts.app') @section('content')

Checkout

@csrf {{-- Left Column - Shipping & Payment --}}
{{-- Contact Information --}}

1 Contact Information

@error('shipping_name')

{{ $message }}

@enderror
@error('shipping_phone')

{{ $message }}

@enderror
{{-- Shipping Address --}}

2 Shipping Address

@error('shipping_address')

{{ $message }}

@enderror
@error('shipping_city')

{{ $message }}

@enderror
{{-- Payment Method --}}

3 Payment Method

{{-- Right Column - Order Summary --}}

Order Summary

{{-- Items --}}
@foreach($items as $item)
{{ $item['name'] }}

{{ $item['name'] }}

Qty: {{ $item['quantity'] }}

৳{{ number_format($item['price'] * $item['quantity'], 2) }}

@endforeach
{{-- Totals --}}
Subtotal ৳{{ number_format($subtotal, 2) }}
@if($discount > 0)
Discount -৳{{ number_format($discount, 2) }}
@endif
Shipping Calculated
Total ৳{{ number_format($subtotal - $discount, 2) }}

By placing your order, you agree to our Terms of Service

@endsection