@extends('layouts.examiner') @section('title', 'View Results') @section('content')

View Results

Export Backup Table
@if(session('success'))
{{ session('success') }}
@endif
{{-- Filter form --}}
{{-- Search row --}} @if($searched)
@if($search) Clear @endif
@if($rows !== null)
Showing {{ $rows->firstItem() }}–{{ $rows->lastItem() }} of {{ $rows->total() }} result(s) @if($search) matching "{{ $search }}"@endif
@endif
@endif
@if($jamb) @else @endif @if($rows === null) @elseif($rows->isEmpty()) @else @foreach($rows as $row) @if($jamb) @else @endif @endforeach @endif
S/N REG NO. NAME GENDER STATE FACULTY DEPARTMENTJAMB PUTME AGGREGATESCOREDATE
Select a session above and click View Results.
No completed results found for the selected filters.
{{ $rows->firstItem() + $loop->index }} {{ $row->reg_no }} {{ $row->name }} {{ $row->gender }} {{ $row->state_of_origin }} {{ $row->fac_name }} {{ $row->dept_name }}{{ $row->jamb }} {{ $row->putme }} {{ $row->aggregate }}{{ $row->putme }}{{ $date ?? ($row->stopped_at ? \Carbon\Carbon::parse($row->stopped_at)->format('Y-m-d') : '') }}
{{-- Pagination --}} @if($rows !== null && $rows->hasPages())
{{ $rows->links() }}
@endif {{-- Download Excel --}} @if($rows !== null && $rows->isNotEmpty())
@csrf
@endif
Generate / Recompute Results

Recomputes scores from pume_answers and saves to the backup results table.

@csrf
@endsection