@extends('layouts.examiner') @section('title', $term ? "Search: {$term}" : 'Search Candidates') @section('content')
| S/N | REG. NO. | NAME | SEX | DEPARTMENT | PROGRAMME | JAMB SCORE | SCORE | |
|---|---|---|---|---|---|---|---|---|
| {{ $i + 1 }} | {{ $cand->reg_no }} | {{ $cand->full_name }} | {{ strtoupper(substr($cand->gender ?? '', 0, 1)) ?: '—' }} | {{ optional($cand->department)->name ?? '—' }} | {{ optional($cand->programme)->name ?? '—' }} | {{ $cand->jamb_score ?? '—' }} | {{ $score !== '' ? $score : '—' }} |
|
| @if($term) No candidates found for “{{ $term }}”. @else Use the search box in the top bar to find candidates. @endif | ||||||||