@extends('layouts.app') @section('title', 'OCR Document Processing') @section('breadcrumbs') @endsection @section('content')

OCR Document Processing

Upload documents for automatic data extraction

Upload Document
Drag & Drop or Click to Upload

Supports: Invoice, Bill of Lading, Bill of Entry, Packing List

Accepted formats: PDF, JPG, PNG, TIFF (Max 10MB)

Recent Documents
@forelse($documents ?? [] as $doc)

{{ $doc->original_name ?? 'Document' }}

{{ $doc->type ?? 'Unknown' }} | {{ $doc->created_at?->diffForHumans() ?? '' }}
{{ ucfirst($doc->status ?? 'pending') }}
@empty
No documents processed yet
@endforelse
Extracted Data

Upload a document to see extracted data

@endsection @push('styles') @endpush @push('scripts') @endpush