@extends('layouts.app') @section('content')

{{ $license->key_hint }} · {{ $license->product->name }}

Edit
@csrf
{{ $license->customer_name }} <{{ $license->customer_email }}> · purchase code {{ $license->purchase_code }} · {{ $license->status }} · expires {{ $license->expires_at?->toDateString() ?? 'never' }}

Installations

@foreach($license->activations as $a)@endforeach
DomainInstallation IDStatusActivatedLast verifiedVersion
{{ $a->domain }} @if($a->is_dev)dev@endif{{ $a->installation_id }}{{ $a->status }}{{ $a->activated_at->toDateTimeString() }}{{ $a->last_verified_at?->diffForHumans() }}{{ $a->app_version }} @if($a->status === 'active')
@csrf
@endif

Recent API requests

@foreach($requests as $r)@endforeach
{{ $r->created_at }}{{ $r->action }}{{ $r->domain }}{{ $r->result }}{{ $r->ip_address }}
@endsection