{{ trans('theme.payment_options') }}

@php $config_shop = vendor_get_paid_directly() ? $shop : null; @endphp @foreach ($paymentMethods as $paymentMethod) @php $config = get_payment_config_info($paymentMethod->code, $config_shop); @endphp {{-- Skip the payment option if not confirured --}} @continue(!$config || !is_array($config) || !$config['config']) {{-- @if ($paymentMethod->code !== 'pip' && $shop->config->pay_online) --}} @if ($customer && $paymentMethod->code == 'stripe' && $customer->hasBillingToken())
{{-- @endif --}} @endif {{-- @if ($paymentMethod->code == 'pip' && $shop->config->pay_in_person) --}}
{{-- @endif --}} @endforeach
{{-- authorize-net --}} @include('partials.authorizenet_card_form') {{-- Stripe --}} @include('partials.strip_card_form') {{-- Razorpay --}} @if (is_incevio_package_loaded('razorpay')) @endif {{-- JRF Pay --}} @if (is_incevio_package_loaded('jrfpay')) @include('jrfpay::jrfpay_payment_form') @endif {{-- M-Pesa Payment --}} @if (is_incevio_package_loaded('mpesa')) @include('mpesa::mpesa_payment_form') @endif {{-- Warehouse adddress --}}

{{ trans('theme.contact_info') }}

@php $warehouseIds = []; @endphp @foreach ($cart->inventories as $key => $inventory) @if (!empty($inventory->warehouse)) @if (!in_array($inventory->warehouse_id, $warehouseIds)) @php $warehouseIds[] = $inventory->warehouse_id; @endphp @endif @endif @endforeach
{{-- End warreHouse address --}}

@lang('theme.placeholder.select_payment_option')