@lang('superadmin.frontCms.pickPlan')
- @lang('superadmin.max') @lang('app.menu.employees')
- @lang('superadmin.fileStorage')
@foreach ($packageFeatures as $packageFeature)
@if (in_array($packageFeature, $activeModule))
-
{{ __('modules.module.' . $packageFeature) }}
@endif
@endforeach
@forelse ($packages->where('monthly_status', 1) as $item)
@if ($item->recommended)
@lang('app.recommended')
{{ ucwords($item->name) }}
{{ $item->formatted_monthly_price }}
@lang('superadmin.frontCms.perMonth'),
{{ $item->currency->currency_code }}.
@else
{{ ucwords($item->name) }}
{{ $item->formatted_monthly_price }}
@lang('superadmin.frontCms.perMonth'),
{{ $item->currency->currency_code }}.
@endif
- {{ $item->max_employees }}
@if ($item->max_storage_size == -1)
-
@lang('superadmin.unlimited')
@else
-
{{ $item->max_storage_size }}
@if($item->storage_unit == 'mb')
@lang('superadmin.mb')
@else
@lang('superadmin.gb')
@endif
@endif
@php
$packageModules = (array) json_decode($item->module_in_package);
@endphp
@foreach ($packageFeatures as $packageFeature)
@if (in_array($packageFeature, $activeModule))
-
@if (in_array($packageFeature, $packageModules))
@endif
@endif
@endforeach
@empty
@lang('superadmin.noActivePackage')
-
-
@foreach ($packageFeatures as $packageFeature)
@if (in_array($packageFeature, $activeModule))
-
@endif
@endforeach
@endforelse