@extends('layout1') @section('title') {{ $seoSetting->seo_title }} @endsection @section('meta') @endsection @section('frontend-content')

{{ __('Pricing Plan') }}

@forelse ($subscriptionPlans as $plan)

{{ $plan->plan_name }}

{{ currency($plan->plan_price) }}

@if ($plan->expiration_date == 'monthly')

30 {{ __('Days') }}

@elseif($plan->expiration_date == 'yearly')

365 {{ __('Days') }}

@elseif($plan->expiration_date == 'lifetime')

{{ __('Unlimited') }}

@endif
    @if ($plan->number_of_property == -1)
  • {{ __('Unlimited Property Submission') }}
  • @else
  • {{ $plan->number_of_property }} {{ __('Propertiy Submission') }}
  • @endif
  • {{ __('Unlimited Amenity') }}
  • {{ __('Unlimited Nearest Place') }}
  • {{ __('Unlimited Photo') }}
  • @if ($plan->is_featured == 1)
  • {{ __('Featured Property') }}
  • @else
  • {{ __('Featured Property') }}
  • @endif @if ($plan->number_of_feature_property == -1)
  • {{ __('Unlimited Featured Property') }}
  • @else
  • {{ $plan->number_of_feature_property }} {{ __('Featured Property') }}
  • @endif @if ($plan->is_top == 1)
  • {{ __('Top Property') }}
  • @else
  • {{ __('Top Property') }}
  • @endif @if ($plan->number_of_top_property == -1)
  • {{ __('Unlimited Top Property') }}
  • @else
  • {{ $plan->number_of_top_property }} {{ __('Top Property') }}
  • @endif @if ($plan->is_urgent == 1)
  • {{ __('Urgent Property') }}
  • @else
  • {{ __('Urgent Property') }}
  • @endif @if ($plan->number_of_urgent_property == -1)
  • {{ __('Unlimited Urgent Property') }}
  • @else
  • {{ $plan->number_of_urgent_property }} {{ __('Urgent Property') }}
  • @endif
@if ($plan->plan_price == 0) {{ __('Start With') }} {{ $plan->plan_name }} @else {{ __('Start With') }} {{ $plan->plan_name }} @endif
@empty

{{ __('Pricing Plan Not Found!') }}

@endforelse
@endsection