@php $licensePath = storage_path('app/installed'); $license = null; if (file_exists($licensePath)) { $contents = file_get_contents($licensePath); $json = json_decode($contents, true); if (json_last_error() === JSON_ERROR_NONE && isset($json['data']) && is_array($json['data'])) { $license = $json['data']; $license['code'] = $json['code'] ?? null; } } @endphp @if ($license)

License Details

  • Item: {{ $license['item'] ?? '—' }}
  • License: {{ $license['license'] ?? '—' }}
  • Username: {{ $license['buyer'] ?? '—' }}
  • Support: @if (($license['supported_now'] ?? 'No') === 'Yes') Active until {{ \Carbon\Carbon::parse($license['supported_unil'])->toFormattedDateString() }} @else Expired Renew support @endif
  • License Code: {{ $license['code'] ?? '—' }}
@else

No valid license found.

Please enter your product license key to activate your installation. You can find it in your Codecanyon Downloads.

@endif