@extends('front_end.template.layout') @section('content')

Checkout

If you have shopped with us before, please enter your details in the boxes below. If you are a new customer, please proceed to the Billing & Shipping section.

Forgot your password?

Enter your coupon code if you have one.

Your Order

@foreach($cart as $item) @endforeach
Product Name Price Qty Subtotal
{{ $item['name'] }}
{{ $item['description'] ?? '' }}
AED {{ number_format($item['price'], 2) }} {{ $item['quantity'] }} AED {{ number_format($item['price'] * $item['quantity'], 2) }}
Tax AED {{ number_format($totalTax, 2) }}
Shipping AED {{ number_format($shipping, 2) }}
Total AED {{ number_format($grand_total, 2) }}

Delivery address

The following addresses will be used on the checkout page by default.

@if($addresses->isEmpty())

You don't have any saved addresses.

Add New Address
@else @foreach($addresses as $address)

{{ $address->address }}

{{ $address->full_name }}

@if($address->is_default) Default Address @else Other Address @endif is_default ? 'checked' : '' }} class="address-radio">
@endforeach @endif

payment method

@csrf
@endsection