@extends('layouts.frontend') @section('title', 'চেকআউট - ' . \App\Models\Setting::get('site_name', config('app.name'))) @section('content')
@csrf

আপনার অর্ডার নিশ্চিত করতে, তথ্য পূরণ করুন

@error('name')

{{ $message }}

@enderror
@error('phone')

{{ $message }}

@enderror
@error('address')

{{ $message }}

@enderror
@error('shipping_area')

{{ $message }}

@enderror
@foreach($paymentGateways as $gateway) @endforeach

ORDER INFORMATION

@foreach($cart as $key => $item) @endforeach
Delete Product Quantity Price
{{ $item['name'] }} {{ Str::limit($item['name'], 25) }}
{{ $item['quantity'] }}
৳ {{ number_format($item['price'] * $item['quantity'], 0) }}
Total ৳ {{ number_format($subtotal, 0) }}
Delivery charges ৳ 0
Total price ৳ {{ number_format($subtotal, 0) }}

Have a coupon?

@if($appliedCoupon)
{{ $appliedCoupon['code'] }}
@else
@endif
@push('scripts') @endpush @endsection