@extends('admin.layout.master') @section('home')

Employee Profile

{{$emp_info->emp_name}}

{{$emp_info->fetch_designation ? $emp_info->fetch_designation->name : null}}

{{$emp_info->fetch_department ? $emp_info->fetch_department->name :null}} Dept.

Email: {{$emp_info->email}}

Phone: {{$emp_info->emp_phone_no}}

Blood Group: {{$other_info->emp_blood_group}}

Age: {{$other_info->emp_age}}

Gender: @if($emp_info->emp_gender==1){{'Male'}}@else{{'Female'}}@endif

Personal Info

Father's name: {{$other_info->emp_father_name}}

Mother's name: {{$other_info->emp_mother_name}}

Religion: {{$other_info->emp_religion}}

Nationality: {{$other_info->emp_nationality}}

E-Tin: {{$other_info->emp_tin_no}}

NID: {{$other_info->emp_nid}}

Passport No: {{$other_info->emp_passport_no}}

Address

Address type: Present

Country: @if(!empty($present_address)) {{$present_address->country}}@endif

House: @if(!empty($present_address)) {{$present_address->house_no}}@endif

City: @if(!empty($present_address)) {{$present_address->city}}@endif

Thana: @if(!empty($present_address)) {{$present_address->thana}}@endif

Post Office: @if(!empty($present_address)) {{$present_address->post_office}}@endif

Road/Village: @if(!empty($present_address)) {{$present_address->road}}@endif

Address: @if(!empty($present_address)) {{$present_address->address_description}}@endif

Address type: Permanent

Country: @if(!empty($permanent_address)) {{ $permanent_address->country}}@endif

House: @if(!empty($permanent_address)) {{$permanent_address->house_no}}@endif

City: @if(!empty($permanent_address)) {{$permanent_address->city}}@endif

Thana: @if(!empty($permanent_address)) {{$permanent_address->thana}}@endif

Post Office: @if(!empty($permanent_address)) {{$permanent_address->post_office}}@endif

Road/Village: @if(!empty($permanent_address)) {{$permanent_address->road}}@endif

Address: @if(!empty($permanent_address)) {{$permanent_address->address_description}}@endif

Emergency Contact

Emergency Contact: 1

Name: {{$other_info->emergency_contact_name}}

Relation: {{$other_info->emergency_contact_relation}}

Phone: {{$other_info->emergency_contact_phone}}

Email: {{$other_info->emergency_contact_email}}



Emergency Contact: 2

Name: {{$other_info->emergency_contact_name2}}

Relation: {{$other_info->emergency_contact_relation2}}

Phone: {{$other_info->emergency_contact_phone2}}

Email: {{$other_info->emergency_contact_email2}}


Reference

Reference 1

Organization: @if(!empty($reference_info_1)) {{$reference_info_1->ref_organization}}@endif

Name: @if(!empty($reference_info_1)) {{$reference_info_1->ref_name}}@endif

Designation: @if(!empty($reference_info_1)) {{$reference_info_1->ref_designation}}@endif

Relations: @if(!empty($reference_info_1)) {{$reference_info_1->ref_relation}}@endif

Phone: @if(!empty($reference_info_1)) {{$reference_info_1->ref_phone}}@endif

Email: @if(!empty($reference_info_1)) {{$reference_info_1->ref_email}}@endif

Reference 2

Organization: @if(!empty($reference_info_2)) {{$reference_info_2->ref_organization}}@endif

Name: @if(!empty($reference_info_2)) {{$reference_info_2->ref_name}}@endif

Designation: @if(!empty($reference_info_2)) {{$reference_info_2->ref_designation}}@endif

Relations: @if(!empty($reference_info_2)) {{$reference_info_2->ref_relation}}@endif

Phone: @if(!empty($reference_info_2)) {{$reference_info_2->ref_phone}}@endif

Email: @if(!empty($reference_info_2)) {{$reference_info_2->ref_email}}@endif

Account Info

Bank: {{$other_info->bank_name}}

Acc Name: {{$other_info->bank_acc_name}}

Acc No: {{$other_info->bank_acc_no}}

Branch: {{$other_info->bank_branch}}

Bank Amount: {{$other_info->bank_amount}}

Recruitment Info

Joining Date: {{$emp_info->joining_date}}

Probation Period: {{$emp_info->probation_period}}

Confirm Date: {{$emp_info->confirm_date}}

Supervisor: {{$emp_info->fetch_supervisor ? $emp_info->fetch_supervisor->emp_name : null}}

Team: {{$emp_info->fetch_team_info ? $emp_info->fetch_team_info->name: null}}

Station/Vehicle No: {{$emp_info->station_vehicle_no}}

Attendance Info

Holiday Policy: {{$emp_info->fetch_weekend_info_data ? $emp_info->fetch_weekend_info_data->policy : null}}

Shift: {{$emp_info->fetch_shift_info_data ? $emp_info->fetch_shift_info_data->name : null}}

Attendance Type: {{$emp_info->attendance_type ? 'Auto Attendance' : 'Manual Attendance' }}

Experience
@foreach ($exp_info as $e) @endforeach

Company name: {{$e->exp_company_name}}

Designation: {{$e->exp_designation}}

Department: {{$e->exp_department}}

Period: {{$e->exp_period}}

Responsibility: {{$e->exp_responsibility}}

Note: {{$e->exp_note}}

Education
@foreach ($edu_info as $e) @endforeach

Title: {{$e->title}}

institution: {{$e->institution}}

Board: {{$e->board_university}}

Pass Year: {{$e->passing_year}}

Grade: {{$e->grade}}

@endsection