@include('partials.superadmin.header') @include('partials.superadmin.menu')
@foreach ($plans as $plan)
{{ $plan->name }} @if (\Auth::user()->type == 'company' && \Auth::user()->plan == $plan->id)
{{ __('Active') }}
@endif

{{ env('CURRENCY_SYMBOL') ? env('CURRENCY_SYMBOL') : '$' }}{{ number_format($plan->price) }}/{{ __('Month') }}

{{ __('Duration : ') . __(\App\Models\Plan::$arrDuration[$plan->duration]) }}

  • {{ $plan->max_users == -1 ? __('Unlimited') : $plan->max_users }} {{ __('Users') }}
  • {{ $plan->max_customers == -1 ? __('Unlimited') : $plan->max_customers }} {{ __('Customers') }}
  • {{ $plan->max_venders == -1 ? __('Unlimited') : $plan->max_venders }} {{ __('Vendors') }}
  • {{ $plan->max_clients == -1 ? __('Unlimited') : $plan->max_clients }} {{ __('Clients') }}
  • {{ $plan->account == 1 ? __('Enable') : __('Disable') }} {{ __('Account') }}
  • {{ $plan->crm == 1 ? __('Enable') : __('Disable') }} {{ __('CRM') }}
  • {{ $plan->hrm == 1 ? __('Enable') : __('Disable') }} {{ __('HRM') }}
  • {{ $plan->project == 1 ? __('Enable') : __('Disable') }} {{ __('Project') }}
@if (\Auth::user()->type == 'super admin') @endif @if (isset($admin_payment_setting) && !empty($admin_payment_setting)) @if ( $admin_payment_setting['is_stripe_enabled'] == 'on' || $admin_payment_setting['is_paypal_enabled'] == 'on' || $admin_payment_setting['is_paystack_enabled'] == 'on' || $admin_payment_setting['is_flutterwave_enabled'] == 'on' || $admin_payment_setting['is_razorpay_enabled'] == 'on' || $admin_payment_setting['is_mercado_enabled'] == 'on' || $admin_payment_setting['is_paytm_enabled'] == 'on' || $admin_payment_setting['is_mollie_enabled'] == 'on' || $admin_payment_setting['is_skrill_enabled'] == 'on' || $admin_payment_setting['is_coingate_enabled'] == 'on') @if (\Auth::user()->type != 'super admin') @if ($plan->id != \Auth::user()->plan) @if ($plan->price > 0) {{ __('Buy Plan') }} {{-- @else --}} {{-- {{__('Free')}} --}} @endif @endif @if ($plan->id != 1 && $plan->id != \Auth::user()->plan) @if (\Auth::user()->requested_plan != $plan->id) @else @endif @endif @endif @endif @endif @if (\Auth::user()->type == 'company' && \Auth::user()->plan == $plan->id)

{{ __('Plan Expired : ') }} {{ !empty(\Auth::user()->plan_expire_date) ? \Auth::user()->dateFormat(\Auth::user()->plan_expire_date) : 'unlimited' }}

@endif
@endforeach
@include('partials.superadmin.footer')