@extends('layouts.theme') @section('title','Purchase Plan') @section('main-wrapper')

{{__('staticwords.pricingplan')}}

{{__('staticwords.purchasemembership')}}

{{__('staticwords.membershipline')}}

  • {{__('staticwords.membershiplines1')}}
  • {{__('staticwords.membershiplines2')}}
@foreach($plans as $plan) @if($plan->delete_status ==1 ) @if($plan->status != 'inactive')

{{$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, $format = true) }} {{ currency($plan->amount, $from = $plan->currency, $to = Session::has('current_currency') ? ucfirst(Session::get('current_currency')) : $plan->currency, $format = true) }} / {{($plan->interval_count)}} @else {{$plan->amount}} {{number_format(($plan->amount) / ($plan->interval_count),2)}} / @endif @if($plan->interval == 'year') Yearly @elseif($plan->interval == 'month') Monthly @elseif($plan->interval == 'week') Weekly @elseif($plan->interval == 'day') Daily @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($plan->free == 1 && $plan->status == 'upcoming') @elseif($plan->free == 1 && $plan->status == 'active')
@csrf
@elseif($plan->status == 'upcoming') @else @endif @else @endauth
@endif @endif @endforeach
@endsection