@extends('layouts.app', ['title' => 'Licenses']) @section('content')

My licenses

Claim purchased product keys into your account, then manage activations and domain moves from here.

@csrf

How it works

1. Add the product key you received after purchase.
2. Use the installer inside your commercial app with your account email, password, and product key.
3. If you move domains later, deactivate the old install first so the activation slot is released.
@foreach ($licenses as $license)
{{ $license->product?->name }}
{{ $license->license_key }}
{{ $license->status }}
Plan
{{ ucfirst($license->license_type) }}
Install slots
{{ $license->activations->whereNull('deactivated_at')->count() }}/{{ $license->activation_limit }}
Active domains
@forelse ($license->activations->whereNull('deactivated_at') as $activation)
{{ $activation->domain }}
{{ $activation->installation_path ?: '/' }}
@csrf
@empty
No active domains yet. This key is ready to be used during installation.
@endforelse
@csrf
@csrf
@endforeach
{{ $licenses->links() }}
@endsection