@extends('layouts.admin') @section('content')
Choose Payment Type
@if(!empty($paymentModeList)) @foreach($paymentModeList as $payment)
@endforeach @endif
Make Payment
@php $product_discount = 0 ; $product_subtotal = 0; @endphp @foreach($order_data->items as $item) @endforeach
Order Summary
  • MRP Total {{ env("CURRENCY_CODE") }} {{number_format($product_subtotal,2)}}
  • @if(isset($product_discount) && $product_discount > 0)
  • Product Discount - {{ env("CURRENCY_CODE") }} {{number_format($product_discount,2)}}
  • @endif @if($order_data->promo_code_discount > '0.00')
  • @lang('messages.Promo Code Discount') - {{ env("CURRENCY_CODE") }} {{$order_data->promo_code_discount}}
  • @endif @if(isset($order_data->delivery_charge) && $order_data->delivery_charge > '0.00') @php $subtotal += $delivery_charge; @endphp
  • Delivery Charge + {{ env("CURRENCY_CODE") }} {{$order_data->delivery_charge}}
  • @else
  • Delivery Charge FREE
  • @endif @if(isset($order_data->promotion_product_total_price) && $order_data->promotion_product_total_price > 0)
  • Promotion Items Total + {{ env("CURRENCY_CODE") }} {{$order_data->promotion_product_total_price}}
  • @endif @if($order_data->gift_to_others == 1) @php $subtotal += session()->get('gift_value'); @endphp
  • Gift Amount + {{ env("CURRENCY_CODE") }} {{$order_data->gift_to_others_amount}}
  • @endif
  • Total Amount @if($order_data->grand_total > 0) {{ env("CURRENCY_CODE") }} {{number_format($order_data->grand_total,2)}} @else {{ env("CURRENCY_CODE") }} 0.00 @endif
  • @if ($order_data->wallet_amount != '0.00')
  • Wallet Amount - {{ env("CURRENCY_CODE") }} {{ number_format($order_data->wallet_amount,2)}}
  • @endif
  • Amount Payable @if($order_data->grand_total > 0) {{ env("CURRENCY_CODE") }} {{number_format($order_data->amount_payable,2)}} @else {{ env("CURRENCY_CODE") }} 0.00 @endif
@endsection