@extends('layouts.user.layout') @section('title') {{ $websiteLang->where('lang_key','payment')->first()->custom_text }} @endsection @section('meta') @endsection @section('user-content')

{{ $websiteLang->where('lang_key','payment')->first()->custom_text }}

{{ $websiteLang->where('lang_key','payment_detail')->first()->custom_text }}
@if ($paymentSetting->stripe_status==1)
@csrf
{{ $websiteLang->where('lang_key','valid_card')->first()->custom_text }}
@endif @if ($paymentSetting->paypal_status==1) @endif @if ($razorpay->razorpay_status==1)
@csrf @php $payableAmount = round($package_price * $razorpay->currency_rate,2); @endphp
@endif @if ($flutterwave->status == 1) @endif @if ($paymentSetting->bank_status==1)

{!! clean(nl2br(e($stripe->bank_account))) !!}

@csrf
@endif
{{ $websiteLang->where('lang_key','package_detail')->first()->custom_text }}
{{ $websiteLang->where('lang_key','package_name')->first()->custom_text }} {{ $package->package_name }}
{{ $websiteLang->where('lang_key','price')->first()->custom_text }} {{ $currency->currency_icon }}{{ $package->price }}
{{ $websiteLang->where('lang_key','expired_date')->first()->custom_text }} @if ($package->number_of_days==-1) {{ $websiteLang->where('lang_key','unlimited')->first()->custom_text }} @else {{ date('Y-m-d', strtotime($package->number_of_days.' days')) }} @endif
{{ $websiteLang->where('lang_key','property')->first()->custom_text }} @if ($package->number_of_property==-1) {{ $websiteLang->where('lang_key','unlimited')->first()->custom_text }} @else {{ $package->number_of_property }} @endif
{{ $websiteLang->where('lang_key','aminity')->first()->custom_text }} @if ($package->number_of_aminities==-1) {{ $websiteLang->where('lang_key','unlimited')->first()->custom_text }} @else {{ $package->number_of_aminities }} @endif
{{ $websiteLang->where('lang_key','nearest_place')->first()->custom_text }} @if ($package->number_of_nearest_place==-1) {{ $websiteLang->where('lang_key','unlimited')->first()->custom_text }} @else {{ $package->number_of_nearest_place }} @endif
{{ $websiteLang->where('lang_key','photo')->first()->custom_text }} @if ($package->number_of_photo==-1) {{ $websiteLang->where('lang_key','unlimited')->first()->custom_text }} @else {{ $package->number_of_photo }} @endif
{{ $websiteLang->where('lang_key','featured_property')->first()->custom_text }} @if ($package->is_featured==1) {{ $websiteLang->where('lang_key','available')->first()->custom_text }} @else {{ $websiteLang->where('lang_key','not_available')->first()->custom_text }} @endif
{{ $websiteLang->where('lang_key','featured_property')->first()->custom_text }} @if ($package->number_of_feature_property==-1) {{ $websiteLang->where('lang_key','unlimited')->first()->custom_text }} @else {{ $package->number_of_feature_property }} @endif
{{ $websiteLang->where('lang_key','top_property')->first()->custom_text }} @if ($package->is_top==1) {{ $websiteLang->where('lang_key','available')->first()->custom_text }} @else {{ $websiteLang->where('lang_key','not_available')->first()->custom_text }} @endif
{{ $websiteLang->where('lang_key','top_property')->first()->custom_text }} @if ($package->number_of_top_property==-1) {{ $websiteLang->where('lang_key','unlimited')->first()->custom_text }} @else {{ $package->number_of_top_property }} @endif
{{ $websiteLang->where('lang_key','urgent_property')->first()->custom_text }} @if ($package->is_urgent==1) {{ $websiteLang->where('lang_key','available')->first()->custom_text }} @else {{ $websiteLang->where('lang_key','not_available')->first()->custom_text }} @endif
{{ $websiteLang->where('lang_key','urgent_property')->first()->custom_text }} @if ($package->number_of_urgent_property==-1) {{ $websiteLang->where('lang_key','unlimited')->first()->custom_text }} @else {{ $package->number_of_urgent_property }} @endif
@php $payable_amount = $package_price * $flutterwave->currency_rate; $payable_amount = round($payable_amount, 2); @endphp @php $public_key = $paystack->paystack_public_key; $currency = $paystack->paystack_currency_code; $currency = strtoupper($currency); $ngn_amount = $package_price * $paystack->paystack_currency_rate; $ngn_amount = $ngn_amount * 100; $ngn_amount = round($ngn_amount); @endphp @endsection