Name: {{ $student->name ?? 'N/A' }}
Gender: {{ $student->gender == 'F' ? 'Female' : 'Male' }}
Date of Birth:
{{ $student->date_of_birth ? $student->date_of_birth->format('d-m-Y') : 'N/A' }}
[ {{ $student->date_of_birth ? $student->date_of_birth->diffInYears(now()) . ' Years Old' : 'N/A' }} ]
Present Class: @php $academics = App\Models\BeneficiaryInstitutionClass::where('beneficiary_id', $student->id)->first(); @endphp @if ($academics != null) {{ $academics->institutionClass->description ?? '' }} @else {{ $student->present_class }} @endif
No. of Brothers: {{ $student->no_of_brothers ?? 'N/A' }}
No. of Sisters: {{ $student->no_of_sisters ?? 'N/A' }}
No. of People at Home: {{ $student->no_of_people_at_home ?? 'N/A' }}
Area of Residence: {{ $student->area_of_residence ?? 'N/A' }}
LC Village: {{ $student->lc_village ?? 'N/A' }}
Zone: {{ $student->zone ?? 'N/A' }}
Village: {{ $student->village ?? 'N/A' }}
District: {{ $student->district ?? 'N/A' }}
Health Status: {{ $student->health_status ?? 'N/A' }}
Home Situation: {{ $student->home_situation ?? 'N/A' }}
Best Game Activity: {{ $student->best_game_activity ?? 'N/A' }}
Future Ambition: {{ $student->future_ambition ?? 'N/A' }}
Best Food: @if ($student->best_food) {{ implode(', ', json_decode($student->best_food)) }} @else N/A @endif