@extends('layout') @section('title') {{__('user.Pricing Plan')}} @endsection @section('meta') @endsection @section('frontend-content')
@foreach ($pricing_plans as $index => $pricing_plan)

{{ $pricing_plan->plan_name }}

{{ $currency_icon }}{{ $pricing_plan->plan_price }}/ @if ($pricing_plan->expired_time == 'monthly') {{__('user.Monthly')}} @elseif ($pricing_plan->expired_time == 'yearly') {{__('user.Yearly')}} @elseif ($pricing_plan->expired_time == 'lifetime') {{__('user.Lifetime')}} @endif
    @if ($pricing_plan->number_of_property == -1)
  • {{__('user.Unlimited')}} {{__('user.Property Submission')}}
  • @else
  • {{ $pricing_plan->number_of_property }} {{__('user.Property Submission')}}
  • @endif @if ($pricing_plan->featured_property == 'enable')
  • {{__('user.Featured Property')}}
  • @else
  • {{__('user.Featured Property')}}
  • @endif @if ($pricing_plan->featured_property_qty == 0)
  • {{__('user.Unlimited')}} {{__('user.Featured Property')}}
  • @else
  • {{ $pricing_plan->featured_property_qty }} {{__('user.Featured Property')}}
  • @endif @if ($pricing_plan->top_property == 'enable')
  • {{__('user.Top Property')}}
  • @else
  • {{__('user.Top Property')}}
  • @endif @if ($pricing_plan->top_property_qty == 0)
  • {{__('user.Unlimited')}} {{__('user.Top Property')}}
  • @else
  • {{ $pricing_plan->top_property_qty }} {{__('user.Top Property')}}
  • @endif @if ($pricing_plan->urgent_property == 'enable')
  • {{__('user.Urgent Property')}}
  • @else
  • {{__('user.Urgent Property')}}
  • @endif @if ($pricing_plan->urgent_property_qty == 0)
  • {{__('user.Unlimited')}} {{__('user.Urgent Property')}}
  • @else
  • {{ $pricing_plan->urgent_property_qty }} {{__('user.Urgent Property')}}
  • @endif
  • {{__('user.Aminities')}}
  • {{__('user.Nearest Location')}}
  • {{__('user.Property Plan')}}
  • {{__('user.Additional Information')}}
  • {{__('user.Image Gallery')}}
@if ($pricing_plan->plan_type == 'free') {{__('user.Trail Now')}} @else {{__('user.Enroll Now')}} @endif
@endforeach
@endsection