Status
@php
$milestones = [
['label' => 'Created', 'at' => $signingRequest->created_at],
['label' => 'Sent to recipient', 'at' => $signingRequest->sent_at],
['label' => 'Opened by recipient', 'at' => $signingRequest->opened_at],
['label' => 'Reviewed (scrolled through)', 'at' => $signingRequest->viewed_at],
['label' => 'Signed', 'at' => $signingRequest->signed_at],
['label' => 'Completed', 'at' => $signingRequest->completed_at],
];
@endphp
@foreach ($milestones as $m)
-
$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' }}
@endforeach
{{-- Single signing link for the whole request --}}
@if ($this->signingUrl)
Signing link
Share this one secure link — it shows the recipient every contract in this request. It expires {{ $signingRequest->expires_at?->diffForHumans() }}.
@endif
{{-- Contracts in this request --}}