@extends('layouts.app') @section('title', 'Link Submissions') @section('content')

Public Link: {{ $link->link_name }}

Master Template(s): {{ $link->template_title }}

Back to Dashboard

QR Access

QR
Download PNG

Access URLs

Total Submissions

{{ $submissions->where('email_template_status', 'Completed')->count() }}

Status

{{ $link->status }}

Expires

{{ $link->expires_at ? date('M d, Y', strtotime($link->expires_at)) : 'Never' }}

Recent Signers

@forelse($submissions as $sub) @php $docs = json_decode($sub->email_template_json); $signed_urls = []; $file_path_prefix = $baseUrl . "/tenant_user/" . session('company_uuid'); // Loop through all documents in this signer's package if($docs) { foreach($docs as $d) { $signed_urls[] = $file_path_prefix . "/signed_documents/" . $sub->package_id . "_" . $d->template_id . ".pdf"; } } $cert_url = $file_path_prefix . "/certificate/" . $sub->package_id . ".pdf"; @endphp @empty @endforelse
Signer Date Signed Action
Public Signer
IP: {{ $sub->email_template_signed_ip ?: 'Unknown' }}
@if($sub->email_template_status == 'Completed') {{ date('M d, Y', strtotime($sub->email_template_signed_date)) }} {{ date('h:i A', strtotime($sub->email_template_signed_date)) }} @else Abandoned @endif
@if($sub->email_template_status == 'Completed') @endif
No submissions recorded.

Multi-Document Viewer

@endsection