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