@extends('admin.layouts.app') @section('container')
Village: {{ $applicant->present_address }},
Upazila:
{{ $applicant->subDistrict->name }}, District: {{ $applicant->district->name }}
Mobile: {{ $applicant->mobile }}
| Father's Name | : {{ $applicant->father_name }} |
| Mother's Name | : {{ $applicant->mother_name }} |
| Permanent Address | : @if ($applicant->same_as_present) Village: {{ $applicant->present_address }}, Upazila: {{ $applicant->subDistrict->name }} District: {{ $applicant->district->name }} @else Village: {{ $applicant->permanent_address }}, Upazila: {{ $applicant->perSubDistrict->name }} District: {{ $applicant->perDistrict->name }} @endif |
| Present Address | : Village: {{ $applicant->present_address }}, Upazila: {{ $applicant->subDistrict->name }}, District: {{ $applicant->district->name }} |
| Date of Birth | : {{ $applicant->dob }} |
| Marital Status | : {{ $applicant->marital_status ? 'Married' : 'Unmarried' }} |
| Sex | : {{ $applicant->gender }} |
| Religion | : {{ $applicant->religion }} |
| National ID No | : {{ $applicant->nid }} |
| SL NO | Exam Name | Group | Board/University | Year | Result |
| {{ $loop->iteration }} | {{ $item->exam->name ?? '' }} | {{ $item->group ?? '' }} | {{ $item->educationBoard->name ?? '' }} | {{ $item->year ?? '' }} | {{ $item->result ?? '' }} |
| SL NO | Company Name | Branch Name | Area Type | Joining Date | Expire Date | Status |
| {{ $loop->iteration }} | {{ $item->company->name ?? '' }} | {{ $item->branch->name ?? '' }} | {{ $item->area_type ?? '' }} | {{ $item->joining_date ?? '' }} | {{ $item->expire_date ?? '' }} | @if ($item->status) Active @else Inactive @endif |