@php $activationService = app()->make(\App\Services\Activation\IActivationService::class); $licenseInfo = $activationService->getActivationInfo(); if(isset($licenseInfo['activation'])) { if(!auth()->check()){ $pageConfigs = ['myLayout' => 'blank', 'displayCustomizer' => false]; } } else { $pageConfigs = ['myLayout' => 'blank', 'displayCustomizer' => false]; } @endphp @extends('layouts/layoutMaster') @section('title', 'Activation') @section('content')
@if(isset($licenseInfo['activation']))

Activation Details

License Information
    @if(!env('APP_DEMO'))
  • Activation Code: {{ $licenseInfo['activation']['activation_code'] }}
  • @endif
  • Activation Type: {{ ucfirst($licenseInfo['activation']['activation_type']) }}
  • Domain: {{ $licenseInfo['activation']['domain'] }}
Activation Status
  • Status: {{ ucfirst($licenseInfo['activation']['status']) }}
  • Activated At: {{ \Carbon\Carbon::parse($licenseInfo['activation']['created_at'])->format('Y-m-d H:i') }}
@else

Activation Pending

Your copy of {{ config('variables.templateName') }} is not activated.

Please enter your purchase code to activate.

@csrf

Fill these fields if you are activating with an Envato license.
{{-- Optionally, you may include a hidden field for activation type if you want to switch between live and localhost --}}
@endif
@endsection