@extends("design_1.web.layouts.app") @push("styles_top") @endpush @php $isMultiCurrency = !empty(getFinancialCurrencySettings('multi_currency')); $userCurrency = currency(); $invalidChannels = []; @endphp @section("content")

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

{{ handlePrice($calculatePrices["total"], true, true, false, null, true) . ' ' . trans('cart.for_items',['count' => $count]) }}

{{ csrf_field() }}
{{-- Items --}}
{{-- CashBack --}} @if(!empty($totalCashbackAmount)) @include('design_1.web.cart.overview.includes.cashback_alert') @endif

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

@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
$userCharge)) ? 'disabled' : '' }}>
@if(!empty(getOfflineBankSettings('offline_banks_status')))
@endif
@if(!empty($invalidChannels) and empty(getFinancialSettings("hide_disabled_payment_gateways")))
{{-- Alert --}}
{{ trans('update.disabled_payment_gateways') }}

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

@foreach($invalidChannels as $invalidChannel)
{{ $invalidChannel->title }}
@endforeach
@endif
@if(!empty(getOfflineBankSettings('offline_banks_status')))
@endif
{{-- Right Side --}}
{{-- Summary --}}
@include('design_1.web.cart.overview.includes.summary', ['isCartPaymentPage' => true])
@if(!empty($razorpay) and $razorpay)
@endif @endsection @push('scripts_bottom') @endpush