@section('title', __('Subscriptions'))
@foreach ($subscriptions as $subscription)
@if ($loop->index === 1)
{{ __('Popular') }}
@endif

{{ $subscription->name }}

{{ currencyFormat($subscription->amount) }}
{{ $subscription->days }} {{ __('Days') }}
@if (!empty($subscription->qty))

{{ $subscription->qty }} {{ __('Products/Services') }}

{{ __('Maximum items allowed per vendor') }}

@endif

{{ __('Full Platform Access') }}

{{ __('Access to all features and tools') }}

{{ __('Priority Support') }}

{{ __('Get help when you need it') }}

@endforeach
{{-- payment selector model --}}

{{ __('Choose Payment Method') }}

{{ __('Select your preferred payment method to complete your subscription') }}

@foreach ($paymentMethods as $paymentMethod) @endforeach

{{ __('All payments are secured with industry-standard encryption') }}

{{-- payment processing model --}}
@if (($selectedPaymentMethod->slug ?? '') == 'offline') @include('livewire.payment.offline.subscription') @elseif(($selectedPaymentMethod->slug ?? '') == 'paypal')
@endif {{-- paytm --}} @include('livewire.payment.gateways.paytm') {{-- payU --}} @include('livewire.payment.gateways.payu') @if (($selectedPaymentMethod->slug ?? '') != 'offline')

{{ __('Do not close this window') }}

@endif
@push('scripts') {{-- --}} {{-- --}} {{-- //custom payment --}} @endpush