@extends('inner_layout') @section('title') {{ __('Checkout') }} @endsection @php function subscription_currency_pay($amount, $is_convart = true) { $currency_icon = session('currency_icon', "$"); $currency_position = Session::get('currency_position'); $rate = session('currency_rate', 1); if ($is_convart) { $amount = $amount * $rate; } if ($currency_position == 'before_price') { $amount = $currency_icon . $amount; } elseif ($currency_position == 'before_price_with_space') { $amount = $currency_icon . ' ' . $amount; } elseif ($currency_position == 'after_price') { $amount = $amount . $currency_icon; } elseif ($currency_position == 'after_price_with_space') { $amount = $amount . ' ' . $currency_icon; } else { $amount = $currency_icon . $amount; } return $amount; } @endphp @section('frontend_content')

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

    @if ($payment_setting->mollie_status == 1)
  • @endif @if (($payment_setting->paypal_status ?? 0) == 1)
  • @endif @if ($payment_setting->razorpay_status == 1)
  • @endif @if (($payment_setting->bank_status ?? 0) == 1)
  • @endif @if ($payment_setting->paystack_status == 1)
  • @endif @if ($payment_setting->stripe_status == 1)
  • @endif @if ($payment_setting->instamojo_status == 1)
  • @endif @if ($payment_setting->flutterwave_status == 1)
  • @endif

{{ __('Your Subscription') }}

plan_name == 'Standard Plan' ? 'data-aos=zoom-out data-aos-delay=150 data-aos-offset=200' : '' }} class="col-span-4 border border-buisness-red/10 bg-buisness-gray rounded-xl p-5 md:p-[50px] hover:bg-main-black bg-main-black transition-all duration-300 relative group"> @if ($plan?->plan_name == 'Standard Plan')
@for ($i = 0; $i < 3; $i++) {{ get_svg('innerpage.star-icon') }} @endfor
@endif

{{ $plan?->plan_name }}

{{ __('$') }} {{ $plan?->plan_price }} / {{ $plan?->expiration_date }}

{{ $plan?->short_description }}

    @foreach (explode("\n", $plan?->features) as $feature) @if (!empty(trim($feature)))
  • {{ get_svg('innerpage.price_list') }} {{ $feature }}
  • @endif @endforeach
@endsection @section('popup_video') @endsection @push('script_section') @if ($payment_setting->paystack_status == 1) @php $public_key = $payment_setting->paystack_public_key; $currency = optional($paystack_currency)->currency_code; $currency = strtoupper($currency); $ngn_amount = $payable_amount * (optional($paystack_currency)->currency_rate ?? 1); $ngn_amount = round($ngn_amount * 100); @endphp @endif @if ($payment_setting->flutterwave_status == 1) @php $flutter_amount = round($payable_amount * (optional($flutterwave_currency)->currency_rate ?? 1), 2); @endphp @endif @endpush