@extends('layouts.app') @section('title', 'Family Details') @section('content')

Personal Infomation

Name
{{ $family->full_name ?? 'N/A' }}
Gender
{{ $family->gender_text ?? 'N/A' }}
DOB[AD]
{{ $family->dob_en ?? 'N/A' }}
DOB[BS]
{{ $family->dob_np ?? 'N/A' }}
Father's Name
{{ $family->father_name ?? 'N/A' }}
District_en
{{ $family->district_en ?? 'N/A' }}
Ward No_en
{{ $family->wardno_en ?? 'N/A' }}
Address_en
{{ $family->address_en ?? 'N/A' }}
Citizenship No
{{ $family->citizenship_no ?? 'N/A' }}
Martial Status
{{ $family->martial_status_text ?? 'N/A' }}

Contact Information

Email
{{ $family->email ?? 'N/A' }}
Phone No
{{ $family->phone_no ?? 'N/A' }}
Mobile No
{{ $family->mobile_no ?? 'N/A' }}
Ofice Name
{{ $family->office_name ?? 'N/A' }}
Office Phone
{{ $family->office_phone ?? 'N/A' }}
Office Email
{{ $family->office_email ?? 'N/A' }}
Office Address
{{ $family->office_address ?? 'N/A' }}

Educations, Trainings and Involvements

Complete Education Level
{{ $family->educationLevel->title ?? 'N/A' }}
Complete Subject
{{ $family->educationSubject->title ?? 'N/A' }}
Complete Institute
{{ $family->compEducationInstitute->title ?? 'N/A' }}
Complete Year
{{ $family->edu_comp_year ?? 'N/A' }}
Current Level
{{ $family->currentEducationLevel->title ?? 'N/A' }}
Current Institute
{{ $family->currentEducationInstitute->title ?? 'N/A' }}
Current Institute Address
{{ $family->edu_current_inst_address ?? 'N/A' }}
Trainings
{{ $family->trainings ?? 'N/A' }}
Involvements
{{ $family->involvements ?? 'N/A' }}
Profession
{{ $family->professionRelation->title ?? 'N/A' }}

Health Information

Blood Group
{{ $family->blood_group_text ?? 'N/A' }}
Health Problem 1
{{ $family->healthProblem1->title ?? 'N/A' }}
Health Problem 2
{{ $family->healthProblem2->title ?? 'N/A' }}

Photo

Status

{{--
Last Modified By:
Rohan Bajracharya
--}}
Last Modified Date:
{{ $family->updated_at->format('Y-m-d') ?? 'N/A' }}
Created Date:
{{ $family->created_at->format('Y-m-d') ?? 'N/A' }}
Status:
{{ $family->status_text ?? 'N/A' }}

Family Members

@foreach ($members as $member)
Tamrakar-ID:
{{ $member->tamrakar_id ?? 'M/A' }}
Name:
{{ $member->full_name ?? 'N/A' }}
Father's Name:
{{ $member->father_name ?? 'N/A' }}

@endforeach
@endsection