@extends('layouts.app') @section('title', 'Merit List') @section('breadcrumb') Dashboard Merit list @endsection @section('content')
Official merit rankings Auto-updated

Merit list

Select a post to view the ranked list of completed exam attempts.

1
@if($posts->isEmpty())
No posts available
Merit lists will appear once posts are created and exams are completed.
@else
@foreach($posts as $post)
{{ $post->code }} {{ $post->status_label }}

{{ $post->title }}

BPS-{{ $post->bps }} · {{ number_format($post->total_seats) }} seats
{{ $post->completed_exams_count }} ranked @if($post->completed_exams_count > 0) View @else No exams yet @endif
@endforeach
@endif @endsection @push('scripts') @endpush