@extends('layouts.examiner') @section('title', isset($found) ? 'Upload Results' : 'Upload Candidates') @section('content') @if(isset($found)) {{-- ── POST results view ─────────────────────────────────────── --}}

Uploaded Candidates List

Uploaded Candidates
{{-- Raw spreadsheet preview --}}
@foreach($headerRow as $col) @endforeach @foreach($dataRows as $row) @foreach($row as $cell) @endforeach @endforeach
{{ $col }}
{{ $cell }}
{{-- Summary --}}

{{ $found }} CANDIDATE(S) RECORDS SUCCESSFULLY UPLOADED IN {{ $elapsed }}s

@if($noDeptUniq->count())
The following department names were not found!

{{ $noDeptUniq->implode(', ') }}

@endif @if($noProgUniq->count())
The following programme names were not found!

{{ $noProgUniq->implode(', ') }}

@endif Upload Another File View Candidates
@else {{-- ── GET upload form ───────────────────────────────────────── --}}

Upload Candidates List

Upload Candidates
@if(session('error'))
{{ session('error') }}
@endif
@csrf
@error('session_id')
{{ $message }}
@enderror
@error('file')
{{ $message }}
@enderror
View Format?
{{-- Format modal --}} @endif @endsection