|
Employee's Information Form
|
@if (!empty($employeeDetails->image))
@else
@endif
|
| Name |
{{ $employeeDetails->full_name }} |
E.ID |
{{ $employeeDetails->username }} |
NID |
{{ $employeeDetails->nid_no }} |
| 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 |
@if (!empty($employeeDetails->bank_details))
@foreach ($employeeDetails->bank_details as $key => $bankInfo)
| {{ $bankInfo->bank_name }} |
{{ $bankInfo->bank_account_no }} |
{{ $bankInfo->bank_branch }} |
@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 |
@if (!empty($employeeDetails->experience_informations))
@foreach ($employeeDetails->experience_informations as $key => $exInfo)
| {{ $exInfo->institute }} |
{{ $exInfo->position }} |
{{ $exInfo->tenure }} |
@endforeach
@endif
| EDUCATION DETAILS |
| Name Of Exam |
Year |
Department/Subject |
Grade/Division |
Board/University |
@if (!empty($employeeDetails->academic_informations))
@foreach ($employeeDetails->academic_informations as $key => $acInfo)
| {{ $acInfo->ac_exam_name }} |
{{ $acInfo->ac_year }} |
{{ $acInfo->ac_department }} |
{{ $acInfo->ac_grade }} |
{{ $acInfo->ac_board }} |
@endforeach
@endif
| TRANING DETAILS |
| Name of Training |
Authority |
Tenure |
Year |
@if (!empty($employeeDetails->traning_informations))
@foreach ($employeeDetails->traning_informations as $key => $trInfo)
| {{ $trInfo->name_of_training }} |
{{ $trInfo->authority }} |
{{ $trInfo->tenure }} |
{{ $trInfo->year }} |
@endforeach
@endif
| ACHIEVEMENT DETAILS |
| Achievement Details |
Year |
@if (!empty($employeeDetails->achievement_details))
@foreach ($employeeDetails->achievement_details as $key => $achInfo)
| {{ $achInfo->details }} |
{{ $achInfo->year }} |
@endforeach
@endif
| FAMILY DETAILS |
| Name |
Relation |
Profession |
@if (!empty($employeeDetails->family_informations))
@foreach ($employeeDetails->family_informations as $key => $faInfo)
| {{ $faInfo->name }} |
{{ $faInfo->relation }} |
{{ $faInfo->profession }} |
@endforeach
@endif
|