Student Details

Full Name{{ $student->stu_full_name ?? 'N/A' }}
GR No{{ $student->gr_num ?? 'N/A' }}
Auto GR No{{ $student->auto_gr_num ?? 'N/A' }}
Date of Birth{{ $student->stu_dob ?? 'N/A' }}
Gender{{ ucfirst($student->stu_gender ?? 'N/A') }}
Class{{ $student->class ?? 'N/A' }}
Donation Date{{ $student->donation_date ?? 'N/A' }}
Donation Expiry{{ $student->donation_expiry ?? 'N/A' }}
Created On{{ $student->created_on ?? 'N/A' }}
Updated On{{ $student->updated_on ?? 'N/A' }}

Family

@if($student->family)
Father Name{{ $student->family->father_name ?? 'N/A' }}
Mother Name{{ $student->family->mother_name ?? 'N/A' }}
Address{{ $student->family->address ?? 'N/A' }}
Religion{{ $student->family->religion ?? 'N/A' }}
@else No family record found. @endif

Donor

@if($student->donor)
Name{{ $student->donor->donor_name ?? 'N/A' }}
WhatsApp{{ $student->donor->donor_whatsapp ?? 'N/A' }}
@else No donor record found. @endif

Health Records

@if(!empty($student->healthRecords) && $student->healthRecords->count()) @else No health records found. @endif

Student Services

@if(!empty($student->studentServices) && $student->studentServices->count()) @else No services found. @endif

Attendance Records

@if(!empty($student->attendances) && $student->attendances->count()) @else No attendance records found. @endif