{{-- Online Payment Options --}} @if($showOnline && $paymentGatewayActive)
@if($stripeSettings->paypal_status === 1)
@lang('modules.billing.paypal')
@endif @if($stripeSettings->stripe_status === 1)
@lang('modules.billing.stripe')
@endif @if($stripeSettings->razorpay_status === 1)
@lang('modules.billing.razorpay')
@endif @if($offlinePaymentGateways > 0)
@lang('modules.billing.payOffline')
@endif
@endif {{-- Offline Payment Options --}} @if(!$showOnline && $offlinePaymentGateways > 0) @if($paymentGatewayActive)
@lang('modules.billing.payOnline')
@endif
@foreach($methods as $method)
{{ $method->name }}
{!! nl2br(e($method->description)) !!}
@endforeach
@endif