@php $themeOptions = [ [ 'label' => __tr('System'), 'value' => 'system_default', 'href' => route('change.app.theme', ['themeID' => 'system_default']), 'icon' => 'mdi mdi-remote-desktop fs-15' ], [ 'label' => __tr('Dark'), 'value' => 'dark', 'href' => route('change.app.theme', ['themeID' => 'dark']), 'icon' => 'mdi mdi-moon-waxing-crescent fs-15' ], [ 'label' => __tr('Light'), 'value' => 'light', 'href' => route('change.app.theme', ['themeID' => 'light']), 'icon' => 'mdi mdi-white-balance-sunny fs-15 text-yellow' ], ]; @endphp @include('layouts.navbars.navbar') @if(isDemo())
@endif @if ($hasActiveLicense) @if(hasVendorAccess())
@php $vendorPlanDetails = vendorPlanDetails(null, null, getVendorId()); @endphp @if(!$vendorPlanDetails->hasActivePlan())
{{ $vendorPlanDetails->message }}
@elseif($vendorPlanDetails->is_expiring)
{{ __tr('Your subscription plan is expiring on __endAt__', [ '__endAt__' => formatDate($vendorPlanDetails->ends_at) ]) }}
@endif
@endif @yield('content') @else
{{ __tr('Product has not been verified yet, please contact via profile or product page.') }}
@endif