@if (is_plugin_active('payment') && $orderAmount) @php $paymentMethods = apply_filters(PAYMENT_FILTER_ADDITIONAL_PAYMENT_METHODS, null, [ 'amount' => format_price($orderAmount, null, true), 'currency' => strtoupper(get_application_currency()->title), 'name' => null, 'selected' => PaymentMethods::getSelectedMethod(), 'default' => PaymentMethods::getDefaultMethod(), 'selecting' => PaymentMethods::getSelectingMethod(), ]) . PaymentMethods::render(); @endphp @if($paymentMethods)
{{ __('Payment method') }}
{!! apply_filters(PAYMENT_FILTER_PAYMENT_PARAMETERS, null) !!}
@endif @endif