@lang('modules.billing.planDetails')

@lang('modules.billing.currentPlan')

{{ $currentPackageName ?? __('modules.billing.noPlanAssigned') }}

@lang('modules.billing.currentPlanType')

{{ $currentPackageType ?? __('modules.billing.noPlanAssigned') }}

{{--
@lang('modules.billing.licenseExpireOn')

{{ $licenseExpireOn ?? __('modules.billing.noPlanAssigned') }} @if($licenseExpireOn) @php // Calculate the number of days left $daysLeft = abs(now()->diffInDays($licenseExpireOn, false)); // Ensure days left is not negative (0 if expired or today) $daysLeft = max($daysLeft, 0); // Generate message based on the days left $message = $daysLeft > 0 ? $daysLeft . ' ' . __('modules.billing.daysLeft') : __('modules.billing.expired'); @endphp ({{ $message }}) @endif

--}}
@lang('modules.settings.upgradeLicense')