@php $pricingContent = getContent('pricing.content', true); @endphp @extends($activeTemplate . 'layouts.master') @section('content')

{{ __($pricingContent->data_values->heading) }}

{{ __($pricingContent->data_values->subheading) }}

@foreach ($plans as $plan)
{{ __($plan->title) }}
@if (auth()->user() && auth()->user()->activePlan && auth()->user()->activePlan->plan_id == $plan->id) @lang('Current Plan') @endif

{{ $general->cur_sym . showAmount($plan->monthly_price) }}/@lang('Month')

{{ $general->cur_sym . showAmount($plan->yearly_price) }}/@lang('Year')

  • @lang('Listings can be added') {{ $plan->listings }}
  • @lang('Amenities per listing') {{ $plan->amenities }}
  • @lang('Images per listing') {{ $plan->images }}
  • @lang('Videos per listing') {{ $plan->videos }}
  • @lang('Allow google map') @if ($plan->map) @lang('Yes') @else @lang('No') @endif
@guest @else
@endguest
@endforeach
@endsection @push('modal') @endpush @push('script') @endpush