@extends ('Layouts.Application') @section ('MainContent')
@if (4 == $userRoleId) @endif
Images

Employee's Information Form

@if (!empty($employeeDetails->image)) Images @else Images @endif
Name {{ $employeeDetails->full_name }} E.ID {{ $employeeDetails->username }} NID {{ $employeeDetails->nid_no }}
@if (!empty($employeeDetails->bank_details)) @foreach ($employeeDetails->bank_details as $key => $bankInfo) @endforeach @endif
PERSONAL DETAILS
Date Of Birth : {{ $employeeDetails->date_of_birth ? date('d-m-Y', strtotime($employeeDetails->date_of_birth)) : '' }}
Present Address : {{ $employeeDetails->address }}, Police station : {{ $employeeDetails->present_police_station }}, Postcode : {{ $employeeDetails->present_postcode }}
Permanent Address : {{ $employeeDetails->permanent_address }} , District : {{ $employeeDetails->district }} , Upazila : {{ $employeeDetails->upazila }}, Postcode : {{ $employeeDetails->postcode }}
Contact Number {{ $employeeDetails->phone_no }} Email {{ $employeeDetails->email }}
Blood Group : {{ $employeeDetails->blood_group }} Mobile banking account ( @if ($employeeDetails->account_type == 1) bKash @elseif ($employeeDetails->account_type == 2) Nagad @elseif ($employeeDetails->account_type == 3) Rocket @endif ) {{ $employeeDetails->account_no }}
TIN Number {{ $employeeDetails->tin_no }}
Emergency Contact Details :
Name : {{ $employeeDetails->emg_name }} , Relation : {{ $employeeDetails->emg_relation }} , Contact Number : {{ $employeeDetails->emg_phone_no }}
Bank Details :
Bank Name Bank Account No Bank Branch
{{ $bankInfo->bank_name }} {{ $bankInfo->bank_account_no }} {{ $bankInfo->bank_branch }}
@if (!empty($employeeDetails->experience_informations)) @foreach ($employeeDetails->experience_informations as $key => $exInfo) @endforeach @endif
JOB DETAILS
D.O.Joining : {{ $employeeDetails->joining_date ? date('d-m-Y', strtotime($employeeDetails->joining_date)) : '' }} , Current Branch :{{ $employeeDetails->school_branch_name }}, Current Shift :{{ $employeeDetails->school_version_name }}
Branch Of Joining : {{ $employeeDetails->joining_branch }}, Shift Of Joining : {{ $employeeDetails->joining_branch_and_version }}, Present Position : {{ $employeeDetails->designation_name }}
Index No : {{ $employeeDetails->index_no }}, Salary Code : {{ $employeeDetails->salary_code }}, MPO Date : {{ $employeeDetails->mpo_date }}
OTHERS EXPERIENCE :
Institute Position Tenure
{{ $exInfo->institute }} {{ $exInfo->position }} {{ $exInfo->tenure }}
@if (!empty($employeeDetails->academic_informations)) @foreach ($employeeDetails->academic_informations as $key => $acInfo) @endforeach @endif
EDUCATION DETAILS
Name Of Exam Year Department/Subject Grade/Division Board/University
{{ $acInfo->ac_exam_name }} {{ $acInfo->ac_year }} {{ $acInfo->ac_department }} {{ $acInfo->ac_grade }} {{ $acInfo->ac_board }}
@if (!empty($employeeDetails->traning_informations)) @foreach ($employeeDetails->traning_informations as $key => $trInfo) @endforeach @endif
TRANING DETAILS
Name of Training Authority Tenure Year
{{ $trInfo->name_of_training }} {{ $trInfo->authority }} {{ $trInfo->tenure }} {{ $trInfo->year }}
@if (!empty($employeeDetails->achievement_details)) @foreach ($employeeDetails->achievement_details as $key => $achInfo) @endforeach @endif
ACHIEVEMENT DETAILS
Achievement Details Year
{{ $achInfo->details }} {{ $achInfo->year }}
@if (!empty($employeeDetails->family_informations)) @foreach ($employeeDetails->family_informations as $key => $faInfo) @endforeach @endif
FAMILY DETAILS
Name Relation Profession
{{ $faInfo->name }} {{ $faInfo->relation }} {{ $faInfo->profession }}
@endsection