{{$plan->name}}
@if(Session::has('current_currency'))
{{ currency($plan->amount, $from = $plan->currency, $to = Session::has('current_currency') ? ucfirst(Session::get('current_currency')) : $plan->currency_symbol, $format = true) }}
{{ currency($plan->amount, $from = $plan->currency, $to = Session::has('current_currency') ? ucfirst(Session::get('current_currency')) : $plan->currency_symbol, $format = true) }}/
{{$plan->interval}}
@else
{{$plan->amount}}
{{number_format(($plan->amount) / ($plan->interval_count),2)}}/
{{$plan->interval}}
@endif
@php
$pricingTexts = App\PricingText::where('package_id',$plan->id)->get();
@endphp
@if(isset($package_feature))
@foreach($package_feature as $pf)
@isset($plan['feature'])
- @if(in_array($pf->id, $plan['feature'])) @else @endif {{ $pf->name }}
@endisset
@endforeach
@endif
@auth
@if(isset($getuserplan['package_id']) && $getuserplan['package_id'] == $plan->id && $getuserplan->status == "1" && $today <= $getuserplan->subscription_to )
@else
@if(!isset($getuserplan['package_id']))
@if($plan->free == 1 && $plan->status == 'upcoming')
@elseif($plan->free == 1 && $plan->status == 'status')
@elseif($plan->status == 'upcoming')
@else
@endif
@endif
@endif
@else
@if($plan->status == 'upcoming')
@else
@endif
@endauth