@extends('layouts.cork') @section('title', 'School Enrollment Report') @section('page-css') @endsection @section('breadcrumb')
@endsection @section('content')
@csrf

School Enrollment Report

@csrf
@foreach($reportData as $schoolId => $schoolData)
{{ $schoolData['name'] }}
@if(count($schoolData['enrollments']) > 0) @foreach($schoolData['enrollments'] as $enrollment) @endforeach
Last Name First Name Section Teacher
{{ $enrollment['last_name'] }} {{ $enrollment['first_name'] }} {{ $enrollment['section'] }} {{ $enrollment['teacher'] }}
@else

No approved enrollments for this school.

@endif @endforeach
@endsection @section('page-js') @endsection