@extends('layouts.app') @section('title', 'Bulk Signature History') @section('content')
Track and manage your high-volume document requests.
| Batch ID | Recipients / Progress | Status | Actions |
|---|---|---|---|
{{-- substr($batch->bulk_guid, 0, 8) }}...{{ substr($batch->bulk_guid, -4) --}} {{ $batch->bulk_guid }}Sent on: {{ date('M d, Y', strtotime($batch->created_at)) }} |
{{ $batch->signed_count }} / {{ $batch->total_count }} Signed
{{-- Optional: Mini Progress Bar --}}
|
@php $isCompleted = ($batch->signed_count == $batch->total_count); @endphp {{ $isCompleted ? 'Completed' : 'Active' }} | Manage |
|
No bulk requests found. Send a document to multiple recipients at once via CSV upload. |
|||