@extends('layouts.app') @section('title', 'Bulk Signature History') @section('content')
Track and manage your high-volume document requests.
| Batch ID | Templates | {{-- NEW COLUMN --}}Recipients / Progress | Status | Actions |
|---|---|---|---|---|
{{-- Show Batch Name if exists, otherwise fallback to shortened GUID --}} {{ $batch->batch_name ?? 'Unnamed Batch' }}
• {{ date('M d, Y', strtotime($batch->created_at)) }}
|
{{-- NEW COLUMN: Templates --}}
@foreach($batch->template_titles as $title)
@endforeach
|
{{-- Progress --}}
{{ $batch->signed_count }} / {{ $batch->total_count }} Signed
|
{{-- Status --}}
@php $isCompleted = ($batch->signed_count == $batch->total_count); @endphp {{ $isCompleted ? 'Completed' : 'Active' }} | {{-- Actions --}} {{-- Find this line in your bulk_sends/index.blade.php --}}Manage |
|
No bulk requests found. Send a document to multiple recipients at once via CSV upload. |
||||