@extends('layouts.main') @section('page-title') {{ __('Subscription Setting') }} @endsection @section('page-breadcrumb') {{ __('Subscription Setting') }} @endsection @push('css') @endpush @section('page-action')
@endsection @section('content')
@if (admin_setting('custome_package') == 'on' && admin_setting('plan_package') == 'on')
@endif @if (admin_setting('plan_package') == 'on')

{{ __('Compare our plans') }}

    @foreach ($modules as $module) @if (!isset($module->display) || $module->display == true)
  • {{ $module->alias }}
  • @endif @endforeach
@foreach ($plan as $single_plan) @php $plan_modules = !empty($single_plan->modules) ? explode(',', $single_plan->modules) : []; @endphp
status == 1 ? 'checked' : '' }}>

{{ !empty($single_plan->name) ? $single_plan->name : __('Basic') }}

@if ($single_plan->id != 1) {!! Form::open([ 'method' => 'DELETE', 'route' => ['plans.destroy', $single_plan->id], 'id' => 'delete-form-' . $single_plan->id, ]) !!} {!! Form::close() !!} @endif
{{ super_currency_format_with_sym($single_plan->package_price_monthly) }}{{ __('/Per Month') }}
{{ super_currency_format_with_sym($single_plan->package_price_yearly) }}{{ __('/Per Year') }}
  • {{ __('Max User :') }} {{ $single_plan->number_of_user == -1 ? 'Unlimited' : (!empty($single_plan->number_of_user) ? $single_plan->number_of_user : 'Unlimited') }}
  • {{ __('Max Workspace :') }} {{ $single_plan->number_of_workspace == -1 ? 'Unlimited' : (!empty($single_plan->number_of_workspace) ? $single_plan->number_of_workspace : 'Unlimited') }}
  • {{ __('Free Trial Days :') }} {{ !empty($single_plan->trial_days) ? $single_plan->trial_days : 0 }}
    @foreach ($modules as $module) @if (!isset($module->display) || $module->display == true) @if (in_array($module->name, $plan_modules))
  • @else
  • @endif @endif @endforeach
@endforeach
@endif
@endsection @include('plans.plan_script')