@extends('front.layout') @section('pagename') - {{__('Pricing')}} @endsection @section('meta-description', !empty($seo) ? $seo->pricing_meta_description : '') @section('meta-keywords', !empty($seo) ? $seo->pricing_meta_keywords : '') @section('breadcrumb-title') {{__('Pricing')}} @endsection @section('breadcrumb-link') {{__('Pricing')}} @endsection @section('content')
@if (count($terms) > 1)
@endif
@foreach ($terms as $term)
@php $packages = \App\Models\Package::where('status', '1')->where('term', strtolower($term))->get(); @endphp @foreach($packages as $package) @php $pFeatures = json_decode($package->features); @endphp

{{$package->title}}

{{$package->price != 0 && $be->base_currency_symbol_position == 'left' ? $be->base_currency_symbol : ''}}{{$package->price == 0 ? "Free" : $package->price}}{{$package->price != 0 && $be->base_currency_symbol_position == 'right' ? $be->base_currency_symbol : ''}}/ {{__("$package->term")}}

    @foreach ($allPfeatures as $feature)
  • {{__("$feature")}} @if ($feature == 'Plugins') ({{__('Google Analytics, Disqus, WhatsApp, Facebook Pixel, Tawk.to')}}) @endif
  • @endforeach
@if($package->is_trial === "1" && $package->price != 0) {{__('Trial')}} @endif @if ($package->price == 0) {{__('Signup')}} @else {{__('Purchase')}} @endif
@endforeach
@endforeach
@endsection