← Documents

{{ $document->recipient_name }}

{{ $document->recipient_email }}

{{-- Delivery / lifecycle status --}}

Status

@php $milestones = [ ['label' => 'Created', 'at' => $document->created_at], ['label' => 'Sent to recipient', 'at' => $document->sent_at], ['label' => 'Opened by recipient', 'at' => $document->opened_at], ['label' => 'Reviewed (scrolled through)', 'at' => $document->viewed_at], ['label' => 'Signed', 'at' => $document->signed_at], ['label' => 'Completed', 'at' => $document->completed_at], ]; @endphp
    @foreach ($milestones as $m)
  1. $m['at'], 'bg-slate-100 text-slate-300' => ! $m['at'], ])>{{ $m['at'] ? '✓' : '·' }}
    $m['at'], 'text-slate-400' => ! $m['at']])>{{ $m['label'] }}
    {{ $m['at'] ? $m['at']->format('j M Y, H:i').' UTC' : 'Pending' }}
  2. @endforeach
{{-- Signing link --}} @if ($this->signingUrl)

Signing link

Share this secure link with the recipient. It expires {{ $document->expires_at?->diffForHumans() }}.

@endif {{-- Completed --}} @if ($document->status === \App\Enums\DocumentStatus::Completed)

Signature completed

Signed {{ $document->signed_at?->format('j M Y, H:i') }} UTC.

Download signed PDF Certificate @if ($document->certificate) Verify @endif
@if ($document->document_hash)

SHA-256: {{ $document->document_hash }}

@endif
@endif
{{-- Audit trail --}}

Activity history

    @forelse ($document->auditEvents as $event)
  1. {{ $event->event->label() }}
    {{ $event->occurred_at?->format('j M Y, H:i:s') }} UTC @if ($event->ip_address) · {{ $event->ip_address }} @endif @if ($event->browser) · {{ $event->browser['browser'] ?? '' }} {{ isset($event->browser['platform']) ? '· '.$event->browser['platform'] : '' }} @endif
  2. @empty
  3. No activity yet.
  4. @endforelse
{{-- Details --}}

Details

Template
{{ $document->template?->name ?? '—' }}
Document ID
{{ $document->id }}
Created
{{ $document->created_at?->format('j M Y, H:i') }}
@if ($document->sent_at)
Sent
{{ $document->sent_at?->format('j M Y, H:i') }}
@endif @if (!empty($document->variables))
Data
@foreach ($document->variables as $k => $v)
{{ Str::headline($k) }} {{ $v }}
@endforeach
@endif