@extends('layouts.app') @section('title', 'Broadsheet') @section('content')

Broadsheet

@if($broadsheet)
@foreach($broadsheet['subjects'] as $subject) @endforeach @foreach($broadsheet['rows'] as $row) @foreach($broadsheet['subjects'] as $subject) @endforeach @endforeach
Student{{ $subject['name'] }}Aggregate Position
{{ $row['student_name'] }}{{ $row['scores'][$subject['id']] ?? '-' }}{{ $row['aggregate'] ?? '—' }} {{ $row['position'] ?? '—' }}
@csrf
@else

Select a class arm and term to view the broadsheet.

@endif
@endsection