@extends('layout') @section('title') {{__('user.Payment')}} @endsection @section('meta') @endsection @section('frontend-content')

{{__('user.PACKAGE DETAILS')}}

{{__('user.Package')}}

{{ $pricing_plan->plan_name }}

{{__('user.Price')}}

{{ $currency_icon }}{{ $pricing_plan->plan_price }}

{{__('user.Expired')}}

{{ date('d M Y', strtotime($plan_expired_date)) }}

{{__('user.Property')}}

@if ($pricing_plan->number_of_property == -1) {{__('user.Unlimited')}} @else {{ $pricing_plan->number_of_property }} @endif

{{__('user.Featured Property')}}

@if ($pricing_plan->featured_property == 'enable') {{__('user.Available')}} @else {{__('user.Unavailable')}} @endif

{{__('user.Featured Property')}}

@if ($pricing_plan->featured_property_qty == -1) {{__('user.Unlimited')}} @else {{ $pricing_plan->featured_property_qty }} @endif

{{__('user.Top Property')}}

@if ($pricing_plan->top_property == 'enable') {{__('user.Available')}} @else {{__('user.Unavailable')}} @endif

{{__('user.Top Property')}}

@if ($pricing_plan->top_property_qty == -1) {{__('user.Unlimited')}} @else {{ $pricing_plan->top_property_qty }} @endif

{{__('user.Urgent Property')}}

@if ($pricing_plan->urgent_property == 'enable') {{__('user.Available')}} @else {{__('user.Unavailable')}} @endif

{{__('user.Urgent Property')}}

@if ($pricing_plan->urgent_property_qty == -1) {{__('user.Unlimited')}} @else {{ $pricing_plan->urgent_property_qty }} @endif

{{__('user.Aminities')}}

{{__('user.Unlimited')}}

{{__('user.Image Gallery')}}

{{__('user.Unlimited')}}

{{__('user.Nearest Location')}}

{{__('user.Unlimited')}}

{{__('user.Property Plan')}}

{{__('user.Unlimited')}}

{{__('user.Additional Information')}}

{{__('user.Unlimited')}}

{{__('user.Stripe Payment')}}

{{__('user.Total')}} {{ $currency_icon }}{{ $pricing_plan->plan_price }}

@csrf
{{__('user.Please provide your valid card information')}}

{{__('user.Bank Payment')}}

{{__('user.Total')}} {{ $currency_icon }}{{ $pricing_plan->plan_price }}

    {!! clean(nl2br($bankPayment->account_info)) !!}

@csrf
    @if ($stripe->status == 1)
  • @endif @if ($paypal->status == 1)
  • @endif @if ($razorpay->status == 1)
  • @csrf @php $payable_amount = $pricing_plan->plan_price * $razorpay->currency_rate; $payable_amount = round($payable_amount, 2); @endphp
    @endif @if ($flutterwave->status == 1)
  • @endif @if ($mollie->mollie_status ==1)
  • @endif @if ($paystack->paystack_status == 1)
  • @endif @if ($instamojoPayment->status == 1)
  • @endif @if ($bankPayment->status == 1)
  • @endif
bg
bg
bg
{{-- start stripe payment --}} {{-- end stripe payment --}} {{-- start flutterwave payment --}} @php $payable_amount = $pricing_plan->plan_price * $flutterwave->currency_rate; $payable_amount = round($payable_amount, 2); @endphp {{-- end flutterwave payment --}} {{-- paystack start --}} @php $public_key = $paystack->paystack_public_key; $currency = $paystack->paystack_currency_code; $currency = strtoupper($currency); $ngn_amount = $pricing_plan->plan_price * $paystack->paystack_currency_rate; $ngn_amount = $ngn_amount * 100; $ngn_amount = round($ngn_amount); @endphp {{-- end paystack --}} @endsection