@extends('layouts.app') @section('title', 'Bulk Signature History') @section('content')
{{-- Header Section --}}

Bulk Signature History

Track and manage your high-volume document requests.

Create Bulk Request
{{-- Table Section --}}
{{-- NEW COLUMN --}} @foreach($batches as $batch) {{-- Batch ID --}} {{-- Update the Batch ID column in your index table --}} {{-- NEW COLUMN: Templates --}} {{-- Progress --}} {{-- Status --}} {{-- Actions --}} {{-- Find this line in your bulk_sends/index.blade.php --}} @endforeach @if($batches->isEmpty()) @endif
Batch ID TemplatesRecipients / Progress Status Actions
{{-- Show Batch Name if exists, otherwise fallback to shortened GUID --}} {{ $batch->batch_name ?? 'Unnamed Batch' }}
ID: {{ substr($batch->bulk_guid, -12) }} • {{ date('M d, Y', strtotime($batch->created_at)) }}
@foreach($batch->template_titles as $title) {{ $title }} @endforeach
{{ $batch->signed_count }} / {{ $batch->total_count }} Signed
@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.

@endsection