@if (! $certificate)

Certificate not found

No certificate matches the ID {{ $certificateId }}.

@else

Document verified

This is an authentic, signed document.

@php $rows = [ 'Verification status' => 'Signed & completed', 'Signer' => e($certificate->recipient_name).' · '.e($certificate->recipient_email), 'Signed date' => $certificate->signed_at?->format('j M Y, H:i:s').' UTC', 'Document ID' => ''.e($certificate->document_id).'', 'Certificate ID' => ''.e($certificate->id).'', 'Issued' => $certificate->issued_at?->format('j M Y, H:i:s').' UTC', ]; @endphp @foreach ($rows as $label => $value)
{{ $label }}
{!! $value !!}
@endforeach
SHA-256 document hash
{{ $certificate->document_hash }}
@if ($certificate->document && $certificate->document->auditEvents->isNotEmpty())

Audit trail

    @foreach ($certificate->document->auditEvents as $event)
  1. {{ $event->event->label() }}
    {{ $event->occurred_at?->format('j M Y, H:i:s') }} UTC
  2. @endforeach
@endif

Verification provided by {{ config('esign.product_name') }}.

@endif