@extends($activeTemplate . 'layouts.frontend') @section('content') @php $planContent = getContent('plan.content', true); $classes = ['text--base','text--primary','text--base-three','text--base-two','text--dark','text--success']; $index = 0; @endphp
{{ __($planContent->data_values->section_title) }}

{{ __($planContent->data_values->heading) }}

@foreach ($plans as $plan) @php $class=@$classes[$index]; $index >= 5 ? $index=0 : $index++; @endphp
@if ($plan->highlight == 1) @lang('Most Popular') @endif
{{ __($plan->name) }}

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

{{getAmount($plan->price) }}/{{ __($general->cur_text) }}

@lang('Get Started')
@endforeach
@if (@$sections->secs != null) @foreach (json_decode($sections->secs) as $sec) @include($activeTemplate . 'sections.' . $sec) @endforeach @endif @endsection @push('script') @endpush