@extends('Frontend.layout.main') @section('content') @include('Frontend.inc.banners')

Make Payment

{{--
Product
Quantity
Price
Amount
@php $subtotal =0; $offer =0 @endphp @foreach($order_items as $list) @php if($list->size != 0){ $price = App\Http\Controllers\Frontend\CartController::getPrice($list->size); }else{ $price =$list->default_price; } @endphp
{{ $list->title }}
{{ $list->title }}
Qty : {{ $list->quantity }}
Price : AED  {{ $price }}
Amt : AED  {{ $price * $list->quantity }}
@php $rowtotal = $price * $list->quantity; $subtotal =$subtotal+$rowtotal; @endphp @endforeach
Sub Total : AED {{ round($subtotal,2) }}
@if($offer_availablity) @php $offer = $subtotal *0.15; @endphp
First order offer (15%) : - AED {{ round($offer,2) }}
@endif
@php $vat =$subtotal *0.05; $delivery_charges =$delivery_charges->delivery_charge; @endphp Delivery charge : AED {{ round($delivery_charges,2) }}
VAT (5%): AED {{ round($vat,2) }}
Grand Total : AED {{ round($subtotal + $delivery_charges + $vat - $offer,2) }}
@if(!$offer_availablity)
@csrf
A promotional code? Add it here
@if(isset($discount_error) && $discount_error ) Invalid promotional code @endif
@endif --}}

Payment Options

@csrf

Payment Details

@endsection @section('script') @if(isset($discount_error) && $discount_error ) @endif @endsection