@extends($active_theme) @section('title') {{__('user.Pricing')}} @endsection @section('frontend-content')
{{__('user.Our Pricing Plan')}}

{{__('user.Pricing For Your Company')}}

@foreach ($plans as $index => $plan )

@if ($setting->currency_position == 'before_price') {{ sprintf('%0.2f', $plan->plan_price) }}{{ $setting->currency_icon }} / @if ($plan->expiration_date == 'monthly') {{__('user.Monthly')}} @elseif ($plan->expiration_date == 'yearly') {{__('user.Yearly')}} @elseif ($plan->expiration_date == 'lifetime') {{__('user.Lifetime')}} @endif @else {{ $setting->currency_icon }}{{ sprintf('%0.2f', $plan->plan_price) }} / @if ($plan->expiration_date == 'monthly') {{__('user.Monthly')}} @elseif ($plan->expiration_date == 'yearly') {{__('user.Yearly')}} @elseif ($plan->expiration_date == 'lifetime') {{__('user.Lifetime')}} @endif @endif

pricing

{{ $plan->plan_name }}

  • {{ $plan->maximum_service }} {{__('user.Product Upload')}}
  • {{__('user.Exclusive Landing Page')}}
  • {{__('user.Modules')}}
  • {{__('user.Different Layouts')}}
  • {{__('user.Support Ticket')}}
  • {{__('user.Button Style')}}
@if ($plan->plan_price == 0) {{__('user.Trail Now')}} @else {{__('user.Purchase Now')}} @endif
@endforeach
@endsection