{{-- WORKSUITESAAS --}} @if(session('subdomain_module_activated') == 'activated')
Note:
Since you have activated the subdomain module, Superadmin login url changes.
New Superadmin Login URL:
{{ url('/') }}/super-admin-login
@endif
@lang('app.name')
Purchase Code
@lang('app.currentVersion')
@lang('app.latestVersion')
@lang('app.status')
@forelse ($allModules as $key=>$module)
{{ $key }}
@if (in_array($module, $worksuitePlugins)) @if (config(strtolower($module) . '.setting')) @php $settingInstance = config(strtolower($module) . '.setting'); $fetchSetting = $settingInstance::first(); @endphp @if (config(strtolower($module) . '.verification_required')) @if ($fetchSetting->purchase_code)
{{ $fetchSetting->purchase_code }}
@else
@lang('app.verifyEnvato')
@endif @endif @endif @endif
@if (config(strtolower($module) . '.setting'))
{{ File::get($module->getPath() . '/version.txt') }}
@endif
@if (config(strtolower($module) . '.setting') && isset($version[config(strtolower($module) . '.envato_item_id')])) @if ($version[config(strtolower($module) . '.envato_item_id')] > File::get($module->getPath() . '/version.txt'))
{{ $version[config(strtolower($module) . '.envato_item_id')] ?? '-' }}
@else
{{ $version[config(strtolower($module) . '.envato_item_id')] ?? '-' }}
@endif @endif
@empty
@endforelse
@include('vendor.froiden-envato.update.plugins', ['allModules' => $allModules])