@extends(getTemplate().'.layouts.app') @push('styles_top') @endpush @section('content') {{ trans('cart.checkout') }} {{ handlePrice($total) . ' ' . trans('cart.for_items',['count' => $count]) }} @if(!empty($totalCashbackAmount)) {{ trans('update.get_cashback') }} {{ trans('update.by_purchasing_this_cart_you_will_get_amount_as_cashback',['amount' => handlePrice($totalCashbackAmount)]) }} @endif @php $isMultiCurrency = !empty(getFinancialCurrencySettings('multi_currency')); $userCurrency = currency(); $invalidChannels = []; @endphp {{ trans('financial.select_a_payment_gateway') }} {{ csrf_field() }} @if(!empty($paymentChannels)) @foreach($paymentChannels as $paymentChannel) @if(!$isMultiCurrency or (!empty($paymentChannel->currencies) and in_array($userCurrency, $paymentChannel->currencies))) {{ trans('financial.pay_via') }} {{ $paymentChannel->title }} @else @php $invalidChannels[] = $paymentChannel; @endphp @endif @endforeach @endif $userCharge)) disabled @endif name="gateway" id="offline" value="credit"> {{ trans('financial.account') }} {{ trans('financial.charge') }} {{ handlePrice($userCharge) }} @if(!empty($invalidChannels)) {{ trans('update.disabled_payment_gateways') }} {{ trans('update.disabled_payment_gateways_hint') }} @foreach($invalidChannels as $invalidChannel) {{ trans('financial.pay_via') }} {{ $invalidChannel->title }} @endforeach @endif {{ trans('financial.total_amount') }} {{ handlePrice($total) }} {{ trans('public.start_payment') }} @if(!empty($razorpay) and $razorpay) @endif @endsection @push('scripts_bottom') @endpush
{{ trans('financial.pay_via') }} {{ $paymentChannel->title }}
{{ trans('financial.account') }} {{ trans('financial.charge') }}
{{ trans('update.disabled_payment_gateways_hint') }}
{{ trans('financial.pay_via') }} {{ $invalidChannel->title }}