@extends('layouts.app') @section('content')
| Date | Time Slot | Processed | Success | Failed | Amount (TZS) | Batch IDs | Status |
|---|---|---|---|---|---|---|---|
| {{ \Carbon\Carbon::parse($batch->batch_date)->format('d/m/Y') }} | @if($batch->time_slot === 'morning') 9:00 AM @elseif($batch->time_slot === 'afternoon') 12:00 PM @else 3:00 PM @endif | {{ $batch->total_processed }} | {{ $batch->successful }} | {{ $batch->failed }} | {{ number_format($batch->total_amount ?? 0, 2) }} | @if($batch->batch_ids) {{ implode(', ', array_slice(json_decode($batch->batch_ids, true) ?? [], 0, 2)) }}... @else - @endif | @if($batch->failed > 0) Partial @elseif($batch->successful > 0) Success @else No Loans @endif |
| No batch history available | |||||||