@php
$BasicPaymentSupportedCurrenyListEnum =
\Modules\BasicPayment\app\Enums\BasicPaymentSupportedCurrenyListEnum::class;
$PaymentGatewaySupportedCurrenyListEnum =
\Modules\PaymentGateway\app\Enums\PaymentGatewaySupportedCurrenyListEnum::class;
@endphp
@if (session()->has('show_stripe_currency') && session()->get('show_stripe_currency'))
Stripe {{ __('Support only those type of currencies') }} :
{{ is_array($BasicPaymentSupportedCurrenyListEnum::getStripeSupportedCurrencies()['all_currency_codes'])
? implode(', ', $BasicPaymentSupportedCurrenyListEnum::getStripeSupportedCurrencies()['all_currency_codes'])
: '' }}
@endif
@if (session()->has('show_mollie_currency') && session()->get('show_mollie_currency'))
{{ __('Mollie') }} {{ __('Support only those type of currencies') }} :
{{ is_array($PaymentGatewaySupportedCurrenyListEnum::getMollieSupportedCurrencies())
? implode(', ', $PaymentGatewaySupportedCurrenyListEnum::getMollieSupportedCurrencies())
: '' }}
@endif
@if (session()->has('show_paypal_currency') && session()->get('show_paypal_currency'))
{{ __('Paypal ') }} {{ __('Support only those type of currencies') }} :
{{ is_array($BasicPaymentSupportedCurrenyListEnum::getPaypalSupportedCurrencies())
? implode(', ', $BasicPaymentSupportedCurrenyListEnum::getPaypalSupportedCurrencies())
: '' }}
@endif
@if (session()->has('show_instamojo_currency') && session()->get('show_instamojo_currency'))
{{ __('Instamojo ') }} {{ __('Support only those type of currencies') }} :
{{ is_array($PaymentGatewaySupportedCurrenyListEnum::getInstamojoSupportedCurrencies())
? implode(', ', $PaymentGatewaySupportedCurrenyListEnum::getInstamojoSupportedCurrencies())
: '' }}
@endif
@if (Session::get('payable_amount') > 0)
@if ($basic_payment->stripe_status == 'active')
@endif
@if ($basic_payment->paypal_status == 'active')
@endif
@if ($basic_payment->bank_status == 'active')
@endif
@if ($razorpay_credentials->razorpay_status == 'active')
@endif
@if ($mollie_credentials->mollie_status == 'active')
@endif
@if ($instamojo_credentials->instamojo_status == 'active')
@endif
@if ($flutterwave_credentials->flutterwave_status == 'active')
@endif
@if ($payment_setting->paystack_status == 'active')
@endif
@else
@endif