@extends('layouts.admin', ['title' => 'Activations']) @section('admin-content')

Domain activations

Review locked domains, installation paths, fingerprints, and manually release old installations.

@foreach ($activations as $activation) @endforeach
DomainCustomerProductPathStatusAction
{{ $activation->domain }} {{ $activation->license?->user?->name }} {{ $activation->license?->product?->name }} {{ $activation->installation_path ?: '/' }} {{ $activation->deactivated_at ? 'Inactive' : 'Active' }} @if (! $activation->deactivated_at)
@csrf
@endif
{{ $activations->links() }}
@endsection