@if ($fetchSetting?->license_type)
{{ $fetchSetting->license_type }}
@if (str_contains($fetchSetting->license_type, 'Regular'))
Upgrade to Extended
@endif
@endif
@if (
$fetchSetting?->purchase_code &&
$fetchSetting?->supported_until &&
\Carbon\Carbon::parse($fetchSetting->supported_until)->isPast())
Support Expired
@endif
@if ($fetchSetting?->purchase_code && $fetchSetting?->supported_until)
@include('custom-modules.sections.support-date')
@endif
@if ($fetchSetting)
@if (config(strtolower($universalBundle->getName()) . '.verification_required'))
@include('custom-modules.sections.purchase-code', ['module' => $universalBundle->getName()])
@endif
@if ($plugins->where('envato_id', config(strtolower($universalBundle->getName()) . '.envato_item_id'))->first())
@include('custom-modules.sections.module-update', ['module' => $universalBundle->getName(), 'fetchSetting' => $fetchSetting])
@endif
@endif