@extends('admin.layouts.master') @section('title', 'Document Verification') @push('styles') @endpush @section('content')

Document Verification

Review and approve mandatory student documents.

{{-- Filter Tabs --}}
{{-- LEFT COLUMN: DOCUMENT LIST --}}
Queue ({{ $documents->total() }})
@forelse($documents as $doc)
{{ substr($doc->student->name ?? 'S', 0, 1) }}
{{ $doc->student->name ?? 'Unknown Student' }} {{ $doc->is_verified ? 'Verified' : 'Pending' }}
{{ $doc->document_name }} {{ $doc->created_at->diffForHumans() }}
@empty
No documents found in this queue.
@endforelse
{{-- RIGHT COLUMN: PREVIEW PANE --}}
Select a document to preview
{{-- Action Buttons (Hidden initially) --}}

Preview will appear here

{{-- HIDDEN INPUTS FOR JS --}} @endsection @push('scripts') @endpush