@extends('site_app') @section('head_title', trans('words.pricing').' - '.getcong('site_name') ) @section('head_url', Request::url()) @section('content') @if(get_web_banner('other_page_top')!="")
{!!stripslashes(get_web_banner('other_page_top'))!!}
@endif
@foreach($plan_list as $plan_data)

{{$plan_data->plan_name}}

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

  • {{trans('words.validity')}}: {{ App\SubscriptionPlan::getPlanDuration($plan_data->id) }}
  • {{trans('words.property_limit')}} : {{ $plan_data->plan_property_limit }}
{{trans('words.select_plan')}}
@endforeach
@if(get_web_banner('other_page_bottom')!="")
{!!stripslashes(get_web_banner('other_page_bottom'))!!}
@endif
@endsection