@extends('layouts.app', ['title' => __tr('Proceed to Pay for Subscription')]) @section('content') @include('users.partials.header', [ 'title' => __tr('Proceed to Pay for Subscription'), 'description' => '', 'class' => 'col-lg-7' ])
@if($existingRequestExist)
{{ __tr('You already have existing initiated/pending request.') }}
@endif
@foreach ($planDetails['features'] as $featureKey => $featureValue) @php $structureFeatureValue = $featureValue; $featureValue = $featureValue; @endphp
@if (isset($featureValue['type']) and ($featureValue['type'] == 'switch')) @if (isset($featureValue['limit']) and $featureValue['limit']) @else @endif {{ ($structureFeatureValue['description']) }} @else @if (isset($featureValue['limit']) and $featureValue['limit'] < 0) {{ __tr('Unlimited') }} @elseif(isset($featureValue['limit'])) {{ $featureValue['limit'] }} @endif {{ ($structureFeatureValue['description']) }} @if(isset($featureValue['limit_duration_title'])) {{ ($featureValue['limit_duration_title']) }} @endif @endif
@endforeach

{{ $planFrequencyTitle }} {{ $planChargesFormatted }}
{{ __tr('No auto debit') }}

@php $paymentMethod = $subscriptionRequestRecord->__data['manual_txn_details']['selected_payment_method'] ?? null; @endphp @if (($paymentMethod == 'upi') and ($subscriptionRequestRecord->status == 'initiated'))
{{ __tr('UPI Payments') }}
{{ __tr('UPI Payment') }}

{{ __tr('Scan QR code and make the payment using any UPI app, once the payment made submit your transaction ID') }}

{{ getAppSettings('payment_upi_customer_notes') }}

@elseif ($paymentMethod == 'bank_transfer' and ($subscriptionRequestRecord->status == 'initiated'))
{{ __tr('Bank Transfer') }}

{{ __tr('Deposit Instructions are given below') }}

{{ getAppSettings('bank_transfer_instructions') }}

@endif
{{ __tr('Payment Details') }} @if ($subscriptionRequestRecord->status == 'initiated')
@elseif ($subscriptionRequestRecord->status == 'pending')

{{ __tr('We have already recorded your details. Please wait while admin confirm it. If needed you contact us using following link') }}

{{ __tr('Contact Us') }}
@endif
@endsection