@section('title', __('Subscriptions'))
@foreach ($subscriptions as $subscription)

{{-- {{ setting('currency', '$') }} --}} {{ currencyFormat($subscription->amount) }}

{{ $subscription->name }}

{{ $subscription->days }} {{ __('Days') }}

@if (!empty($subscription->qty))

{{ $subscription->qty }} {{ __('Qty') }}

{{ __('Note: Number of products/services/package types allowed per vendor') }}

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

{{ __('Subscription Payment') }}


@foreach ($paymentMethods as $paymentMethod) @endforeach
{{-- 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