@extends('portal.layouts.app') @section('title', 'File Batches') @section('subtitle', number_format($batches->total()).' batches exchanged with BankIslami') @section('content')
Reset
@forelse ($batches as $batch) @empty @endforelse
Batch Type Direction Rows Applied Failed Status Created
{{ $batch->batch_no }} {{ $batch->original_name }} {{ $batch->type->label() }} {{ $batch->direction }} {{ number_format($batch->total_rows) }} {{ number_format($batch->success_rows) }} {{ number_format($batch->failed_rows) }} {{ $batch->status->label() }} {{ $batch->created_at->format('d M Y H:i') }} {{ $batch->creator?->name }}
No batches match these filters.
@if ($batches->hasPages())
{{ $batches->links() }}
@endif
@endsection