@extends('admin.default') @section('css') @endsection @section('content')

Health Records

@include('include.messages')
Reset

Health Records

@forelse($healthRecords as $record) @empty @endforelse
Student Name Family Name Checkup Date BMI Action
{{ $record->student->stu_full_name ?? '-' }} {{ $record->family->father_name ?? '-' }} {{ \Carbon\Carbon::parse($record->checkup_date)->format('d M Y') }} {{ $record->bmi ?? '-' }}
@csrf @method('DELETE')
No health records found.
@if($healthRecords->total() > 2) @endif
@endsection @section('js') @endsection