@extends($activeTemplate . 'layouts.frontend') @section('content')
@foreach ($plans as $plan)
@if ($plan->highlight) @endif

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

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

  • @lang('Plan Details')
  • @lang('Daily Limit') : {{ $plan->daily_limit }} @lang('PTC')
  • @lang('Referral Bonus') : @lang('Upto') {{ $plan->ref_level }} @lang('Level')
  • @lang('Plan Price') : {{ showAmount($plan->price) }} {{ __($general->cur_text) }}
  • @lang('Validity') : {{ $plan->validity }} @lang('Days')
@if (@auth()->user()->runningPlan && @auth()->user()->plan_id == $plan->id) @else @endif
@endforeach
@if ($sections->secs != null) @foreach (json_decode($sections->secs) as $sec) @include($activeTemplate . 'sections.' . $sec) @endforeach @endif @endsection @push('style') @endpush @push('script') @endpush