@extends('layouts.app') @section('title', 'Upload History') @section('breadcrumbs') @endsection @section('content')

Upload History

View all attendance file uploads and their processing results.

New Upload
@forelse($uploads as $upload) @empty @endforelse
File Uploaded By Date Records Processed Failed Status
{{ $upload->original_filename }}
{{ $upload->uploadedBy?->name ?? '—' }} {{ $upload->created_at->format('d M Y, h:i A') }} {{ $upload->records_count }} {{ $upload->processed_count }} {{ $upload->failed_count }} {{ $upload->status_label }} @if($upload->failed_count > 0 && $upload->error_log) @endif
No uploads yet

Upload your first attendance file to get started.

Upload File
@if($uploads->hasPages())
{{ $uploads->links() }}
@endif
{{-- Error Details Modal --}}
@endsection