@extends('front_end.layouts.home') @php $showRightSidebar = false; @endphp @section('title', __('pick_your_plan')) @section('left_sidebar') @endsection @section('content')

{{ __('pick_your_plan') }}

{{ __('pro_features_description') }}

@foreach($packages as $package)
{{ $package['name'] }}
${{ $package['package_price'] }} @if($package['package_price'] > 0) /{{ $package['duration'] }} @endif

  • {{ __('verified_badge') }}
  • {{ __('edit_post') }}
  • {{ __('business') }} {{ __('page') }}
  • {{ $package['product_limit'] > 0 ? $package['product_limit'] : '' }} {{ __('monthly_product_create_limit') }}
  • {{ $package['space_limit'] > 0 ? $package['space_limit'] : '' }} {{ __('monthly_space_create_limit_on_app') }}
  • {{ $package['job_limit'] > 0 ? $package['job_limit'] : '' }} {{ __('monthly_job_offer_limit') }}
  • {{ $package['course_limit'] > 0 ? $package['course_limit'] : '' }} {{ __('monthly_course_offer_limit') }}
  • {{ $package['event_limit'] > 0 ? $package['event_limit'] : '' }} {{ __('monthly_event_offer_limit') }}
@if($user['level'] == $package['id']) {{ __('selected') }} @else @endif
@endforeach
@endsection