@extends('layouts.user', ['header' => true, 'nav' => true, 'demo' => true, 'settings' => $settings]) {{-- Custom CSS --}} @section('css') @endsection @section('content')

{{ __('My plan') }}

@if (isset($active_plan)) @if ($active_plan->plan_price == 0)

{{ __($active_plan->plan_name) }}

{{ __('FREE PLAN') }}

@else

{{ __($active_plan->plan_name) }}

@if ($active_plan->validity == 9999)

{{ __('Lifetime') }}

@else

{{ $remaining_days > 0 ? __('Remaining Days') . ' : ' . $remaining_days : __('Plan Expired!') }}

@endif @endif
@if ($free_plan == 0 || $active_plan->plan_price != 0) {{ __('Renew') }} @endif {{ __('Upgrade') }}
@else

{{ __('No active plans!') }}

@endif
@foreach ($plans as $plan)
@if ($plan->recommended == '1')
@endif
{{ __($plan->plan_type == 'BOTH' ? 'VCARD & STORE' : $plan->plan_type) }}
{{ __($plan->plan_name) }}

{{ $plan->plan_price == '0' ? '' : $currency->symbol }}{{ $plan->plan_price == '0' ? __('FREE') : $plan->plan_price }}

@if ($plan->validity == '9999') {{ __('Per') }} {{ __('Forever') }} @endif @if ($plan->validity == '31') {{ __('Per') }} {{ __('Month') }} @endif @if ($plan->validity == '366') {{ __('Per') }} {{ __('Year') }} @endif @if ($plan->validity > '1' && $plan->validity != '31' && $plan->validity != '366' && $plan->validity != '9999') {{ __('Per') . ' ' . $plan->validity . ' ' . __('Days') }} @endif

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

    {{-- Check Card type is "Both" or "VCARD" --}} @if ($plan->plan_type == 'BOTH' || $plan->plan_type == 'VCARD')

    {{ __('vCard Features') }}

  • {{ $plan->no_of_vcards == 999 ? __('Unlimited') : $plan->no_of_vcards }} {{ __('vCards') }}
  • {{ $plan->no_of_services == 999 ? __('Unlimited') : $plan->no_of_services }} {{ __('Services') }}
  • {{ $plan->no_of_vcard_products == 999 ? __('Unlimited') : $plan->no_of_vcard_products }} {{ __('Products') }}
  • {{ $plan->no_of_links == 999 ? __('Unlimited') : $plan->no_of_links }} {{ __('Links') }}
  • {{ $plan->no_of_payments == 999 ? __('Unlimited') : $plan->no_of_payments }} {{ __('Payment Listed') }}
  • {{ $plan->no_of_galleries == 999 ? __('Unlimited') : $plan->no_of_galleries }} {{ __('Galleries') }}
  • {{ $plan->no_testimonials == 999 ? __('Unlimited') : $plan->no_testimonials }} {{ __('Testimonials') }}
  • {{ __('Business Hours') }}
  • {{ __('Contact Form') }}
  • {{ $plan->no_of_enquires == 999 ? __('Unlimited') : $plan->no_of_enquires }} {{ __('Enquiries') }}
  • {{ __('Password Protected') }}
  • @endif {{-- Check Card type is "Both" or "STORE" --}} @if ($plan->plan_type == 'BOTH' || $plan->plan_type == 'STORE')

    {{ __('Store Features') }}

  • {{ $plan->no_of_stores == '999' ? __('Unlimited') : $plan->no_of_stores }} {{ __('Stores') }}
  • {{ $plan->no_of_categories == '999' ? __('Unlimited') : $plan->no_of_categories }} {{ __('Categories') }}
  • {{ $plan->no_of_store_products == '999' ? __('Unlimited') : $plan->no_of_store_products }} {{ __('Products') }}
  • @endif {{-- Additional Features --}}

    {{ __('Additional Features') }}

  • {{ __('Advanced Settings') }}
  • {{ __('Progressive Web App (PWA)') }}
  • {{ __('Personalized Link') }}
  • {{ __('Hide Branding') }}
  • {{ __('Free Setup') }}
  • {{ __('Free Support') }}
@if ($free_plan == 0 || $plan->plan_price != '0') {{ __('Choose plan') }} @else {{ __('Choose plan') }} @endif
@endforeach
@include('user.includes.footer')
@endsection