@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))) @else @php $invalidChannels[] = $paymentChannel; @endphp @endif @endforeach @endif
@if(!empty($invalidChannels))

{{ trans('update.disabled_payment_gateways') }}

{{ trans('update.disabled_payment_gateways_hint') }}

@foreach($invalidChannels as $invalidChannel) @endforeach
@endif
{{ trans('financial.total_amount') }} {{ handlePrice($total) }}
@if(!empty($razorpay) and $razorpay)
@endif
@endsection @push('scripts_bottom') @endpush