{{ __('Select Payment Method') }} @if(session()->has('messege')) {{ session('messege') }} @endif
-
@if ($payment_setting->mollie_status == 1)
- @endif @if ($payment_setting->paypal_status == 1)
- @endif @if ($payment_setting->instamojo_status == 1)
- @endif @if ($payment_setting->razorpay_status == 1)
- @endif @if ($payment_setting->bank_status == 1)
- @endif @if ($payment_setting->paystack_status == 1)
- @endif @if ($payment_setting->stripe_status == 1)
- @endif @if ($payment_setting->flutterwave_status == 1)
- @endif
{{ __('Your Order') }}
{{ __('Products') }}
{{ __('Subtotal') }}
@foreach ($carts as $cart)
{{ $cart->product->name }} X
{{ $cart->quantity }}
{{ currency_pay($cart->product->finalPrice * $cart->quantity, true) }}
@endforeach
{{ __('Sub Total') }}
{{ currency_pay($sub_total, true) }}
{{ __('Delivery Fee') }}
(+){{ currency_pay($shipping_charge, true) }}
{{ __('Coupon') }}
@if (session('discount_amount'))
@php
$type = session('type');
$discountAmount = session('discount_amount', 0);
$discount = 0;
if ($sub_total) {
if ($type === 'percentage') {
$discount = ($sub_total * $discountAmount) / 100;
} else {
$discount = $discountAmount;
}
}
$grandTotal = $sub_total - $discount;
@endphp
(-){{ currency_pay($discount, true) }}
@else
(-)
{{ currency_pay(0, false) }}
@endif
{{ __('Total') }}
{{ currency_pay($total, true) }}