@extends('layouts.app') @section('title', 'Immunization Records') @section('content')
| Student | Vaccine | Date Given | Next Due |
|---|---|---|---|
| {{ $r->student->full_name }} | {{ $r->vaccine_name }} | {{ \Illuminate\Support\Carbon::parse($r->date_administered)->format('d M, Y') }} | {{ optional($r->next_due_date)->format('d M, Y') ?? '—' }} |
| No immunization records yet. | |||