It seems you have changed the APP_ENV=codecanyon to something else in .env file.
Please do not change it, otherwise, the application will not work properly.
{{-- Purchased On --}}
@if(!is_null($envatoUpdateCompanySetting?->purchased_on))
Purchased On
{{\Carbon\Carbon::parse($envatoUpdateCompanySetting->purchased_on)->translatedFormat('D d M, Y')}}
({{\Carbon\Carbon::parse($envatoUpdateCompanySetting->purchased_on)->diffForHumans()}})
@endif
{{-- Support Expiry --}}
@if(!is_null($envatoUpdateCompanySetting?->supported_until))
Support Expires
{{\Carbon\Carbon::parse($envatoUpdateCompanySetting->supported_until)->translatedFormat('D d M, Y')}}
({{\Carbon\Carbon::parse($envatoUpdateCompanySetting->supported_until)->diffForHumans()}})
@if(\Carbon\Carbon::parse($envatoUpdateCompanySetting->supported_until)->lessThan(now()))
Expired
@endif
@endif
{{-- License Type --}}
@if(!is_null($envatoUpdateCompanySetting->license_type))
License Type
{{$envatoUpdateCompanySetting->license_type}}
@if(str_contains($envatoUpdateCompanySetting->license_type, 'Regular'))
Upgrade now
@endif