@extends('layouts.app') @section('title', 'My Bulk Sends') @section('content')

Bulk Signature History

@foreach($batches as $batch) @endforeach
Batch ID Date Progress Status Action
{{ $batch->bulk_guid }} {{ date('Y-m-d', strtotime($batch->created_at)) }} {{ $batch->signed_count }} / {{ $batch->total_count }} Signed {{ $batch->signed_count == $batch->total_count ? 'Completed' : 'Active' }} Manage
@endsection