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

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

{{ $subscription->name }}

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

@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