Commission Import Batches

Auto-refreshing every 10 seconds
New Batch
@if (session()->has('success')) @endif {{-- Filters --}}
{{-- Batches List --}}
@if($batches->isEmpty())

No batches found. Upload your first batch.

@else
@foreach($batches as $batch) @endforeach
Batch Name Customer Files Progress Status Created Actions
{{ $batch->batch_name }} {{ $batch->customer_name }} {{ $batch->total_files }} files
{{ $batch->progress_percentage }}%
{{ $batch->actual_processed_files }}/{{ $batch->total_files }} processed @if($batch->actual_failed_files > 0) ({{ $batch->actual_failed_files }} failed) @endif @if($batch->skipped_files > 0) ({{ $batch->skipped_files }} skipped) @endif
@if($batch->status === 'completed') Completed @elseif($batch->status === 'processing') Processing @elseif($batch->status === 'failed') Failed @else Pending @endif {{ $batch->created_at->diffForHumans() }}
{{-- Pagination --}}
{{ $batches->links() }}
@endif