@extends('layouts.shimanto-restaurant') @section('content')

Checkout

@if(!Auth::guard('customer')->check()) @endif @if(count($cartCollection)>0)
@csrf

Billing Details

Name *
@error('bill_name')
{{ $message }}
@enderror
Phone *
@error('bill_phone')
{{ $message }}
@enderror
Email
@error('bill_email')
{{ $message }}
@enderror
Address *
@error('bill_address')
{{ $message }}
@enderror
Town / City *
@error('bill_town_city')
{{ $message }}
@enderror
State / Country *
@error('bill_country')
{{ $message }}
@enderror
Postcode / Zip *
@error('bill_zip_code')
{{ $message }}
@enderror
{{--********************************************************--}}

Delivery to Different Address

{{--********************************************************--}}

Your Order

@foreach($cartCollection as $key) @endforeach
PRODUCT QTY PRICE
{{ \Illuminate\Support\Str::limit($key->name, 35, $end='...') }} {{ $key->quantity }} ৳{{ number_format((float)$key->price, 2, '.', '') }}
Subtotal ৳{{ number_format((float)$totalAmount, 2, '.', '') }}
Delivery Charge + ৳{{ number_format((float)$settings->shipping_charge, 2, '.', '') }}
Coupon Discount - ৳0.00
15% VAT + ৳{{ number_format((float)($totalAmount*15)/100, 2, '.', '') }}
TOTAL ৳{{ number_format((float)$totalAmount + $settings->shipping_charge, 2, '.', '') }}
I agree with Terms & Conditions, Privacy Policy and Refund-Return Policy @error('agree_checkbox')

{{ $message }}
@enderror
@csrf
@else

Cart is Empty

Continue Shopping @endif
@endsection