@extends('layouts.app')
@section('title', 'Medical Reports')
@section('content')
Medical Reports
Visits This Month
{{ $visitsThisMonth }}
Students with Allergies
{{ $allergyCount }}
Blood Group Distribution
| Blood Group | Students |
@forelse($bloodGroups as $group => $count)
| {{ $group ?: 'Not recorded' }} | {{ $count }} |
@empty
| No data yet. |
@endforelse
@endsection