@php $plans = \App\Models\Plan::where('publication_status', Status::YES) ->where('featured', Status::YES) ->limit(3) ->get(); $pricing = getContent('pricing.content', true); @endphp
@lang('Pricing')

{{ __(@$pricing->data_values->heading) }}

{{ __(@$pricing->data_values->sub_heading) }}

@foreach ($plans as $plan)
@lang('Plan')
{{ __(gs()->cur_sym) }} {{ getAmount($plan->price) }}

{{ __($plan->name) }}

  • {{ getAmount($plan->credit) }} @lang('credits')
@auth @else @lang('Purchase Now') @endauth
@endforeach
@auth @include('Template::partials.buy_modal') @endauth