| Donor Name | {{ $donor->donor_name ?? 'N/A' }} |
| WhatsApp | {{ $donor->donor_whatsapp ?? 'N/A' }} |
| Reference Name | {{ $donor->donor_ref_name ?? 'N/A' }} |
| Secondary WhatsApp | {{ $donor->donor_whatsapp_sec ?? 'N/A' }} |
| Created On | {{ $donor->created_on ?? 'N/A' }} |
| Updated On | {{ $donor->updated_on ?? 'N/A' }} |
Associated Students
@if($donor->students && $donor->students->count() > 0)
@foreach($donor->students as $student)
-
{{ $student->stu_full_name ?? 'N/A' }}
(GR No: {{ $student->gr_num ?? 'N/A' }},
Class: {{ $student->class ?? 'N/A' }})
@endforeach
@else
No student records found.
@endif