@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 --}}
@foreach($batches as $batch) @endforeach @if($batches->isEmpty()) @endif
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.

@endsection