@extends('app') @section('head_title',trans('words.pricing_plan').' | '.getcong('site_name') ) @section('head_url', Request::url()) @section("content")
@foreach($subscription_plan as $plan_data)
@if($plan_data->plan_recommended) {{trans('words.recommended')}} @endif

{{$plan_data->plan_name}}

{{html_entity_decode(getCurrencySymbols(getcong('currency_code')))}}{{$plan_data->plan_price}}

{{trans('words.for')}} {{ App\Models\SubscriptionPlan::getPlanDuration($plan_data->id) }}


  • {{$plan_data->plan_listing_limit}} Listings {{trans('words.allowed')}}
  • @if($plan_data->plan_amenities_option)
  • {{trans('words.amenities')}}
  • @else
  • {{trans('words.amenities')}}
  • @endif @if($plan_data->plan_business_hours_option)
  • {{trans('words.business_hours')}}
  • @else
  • {{trans('words.business_hours')}}
  • @endif @if($plan_data->plan_gallery_images_option)
  • {{trans('words.gallery_images')}}
  • @else
  • {{trans('words.gallery_images')}}
  • @endif @if($plan_data->plan_video_option)
  • {{trans('words.video')}}
  • @else
  • {{trans('words.video')}}
  • @endif @if($plan_data->plan_featured_option)
  • {{trans('words.featured')}} {{trans('words.listings')}} {{trans('words.allowed')}}
  • @else
  • {{trans('words.featured')}} {{trans('words.listings')}} {{trans('words.not_allowed')}}
  • @endif @if($plan_data->plan_enquiry_form)
  • {{trans('words.enquiry_form')}} {{trans('words.allowed')}}
  • @else
  • {{trans('words.enquiry_form')}} {{trans('words.not_allowed')}}
  • @endif
{{trans('words.continue')}}
@endforeach
@endsection