@extends('admin.layouts.app') @section('container')

Applicant Details

@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
{{--
--}}

Resume
of

{{ $applicant->name ?? '' }}

Village: {{ $applicant->present_address }},
Upazila: {{ $applicant->subDistrict->name }}, District: {{ $applicant->district->name }}

Mobile: {{ $applicant->mobile }}

Profile picture

Personal Information

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 }}

Academic Qualification

@foreach ($applicant->educations as $item) @endforeach
SL NO Exam Name Group Board/University Year Result
{{ $loop->iteration }} {{ $item->exam->name ?? '' }} {{ $item->group ?? '' }} {{ $item->educationBoard->name ?? '' }} {{ $item->year ?? '' }} {{ $item->result ?? '' }}
@if ($applicant->placements->count() > 0)

Jobs History

@foreach ($applicant->placements as $item) @endforeach
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
@endif
@endsection @push('scripts') @endpush