@extends('layouts.cork') @section('title', 'School Enrollment Summary Report') @section('content')
@csrf

School Enrollment Summary

@foreach($reportData as $enrollment)
{{ $enrollment->school_name }} ({{ $enrollment->year }})
Fall Spring Full Year Total
{{ $enrollment->fall_count }} {{ $enrollment->spring_count }} {{ $enrollment->full_year_count }} {{ $enrollment->fall_count + $enrollment->spring_count + $enrollment->full_year_count }}
@endforeach
@endsection