@php $planCaption = getContent('plan.content', true); $gatewayCurrency = App\Models\GatewayCurrency::whereHas('method', function ($gate) { $gate->where('status', 1); }) ->with('method') ->orderby('name') ->get(); $plans = App\Models\Plan::where('status', 1)->get(); @endphp

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

{{ __($planCaption->data_values->subheading) }}

@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')
@endforeach
@push('script') @endpush