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

Families

Family Details

Export to PDF
Father Name{{ $family->father_name ?? 'N/A' }}
Father CNIC{{ $family->father_cnic ?? 'N/A' }}
Father Occupation{{ $family->father_occup ?? 'N/A' }}
Father Phone{{ $family->father_phone ?? 'N/A' }}
Mother Name{{ $family->mother_name ?? 'N/A' }}
Mother CNIC{{ $family->mother_cnic ?? 'N/A' }}
Mother Occupation{{ $family->mother_occup ?? 'N/A' }}
Children Count{{ $family->children_count ?? 'N/A' }}
Address{{ $family->address ?? 'N/A' }}
Religion{{ $family->religion ?? 'N/A' }}
Zakat{{ $family->zakat ? 'Yes' : 'No' }}
Emergency Contact Name{{ $family->emerg_name ?? 'N/A' }}
Emergency Relation{{ $family->emerg_relation ?? 'N/A' }}
Emergency Number{{ $family->emerg_num ?? 'N/A' }}
Created On{{ $family->created_on ?? 'N/A' }}
Updated On{{ $family->updated_on ?? 'N/A' }}

Students
@if($family->students && $family->students->count())
    @foreach($family->students as $student)
  • {{ $student->stu_full_name }} ({{ $student->gr_num }})
  • @endforeach
@else No records found. @endif
Health Records
@if($family->healthRecords && $family->healthRecords->count())
    @foreach($family->healthRecords as $record)
  • {{ $record->diagnosis ?? 'N/A' }}
  • @endforeach
@else No records found. @endif
Family Services
@if($family->familyServices && $family->familyServices->count())
    @foreach($family->familyServices as $service)
  • {{ $service->service ?? 'N/A' }}
  • @endforeach
@else No records found. @endif
@endsection