@extends('layouts.master', ['title' => 'Employee Details']) @section('style') @endsection @section('contents')

Employee Details

Personal Details

Employee Code: {{$empdetails->emp_code}}
Employee Name: {{$empdetails->emp_name}}
Gender: {{$empdetails->getPersonalDetail->emp_gender}}
Category: {{$empdetails->getPersonalDetail->emp_category}}
Work Order No: {{$empdetails->emp_work_order}}
Job Place: {{$empdetails->emp_place_of_posting}}
Designation: {{$empdetails->emp_designation}}
Department: {{$empdetails->department}}
Functional Role: {{$empdetails->emp_functional_role}}
Date of Joining: {{date('jS F, Y', strtotime($empdetails->emp_doj))}}
Skills: {{!empty($empdetails->experience) ? $empdetails->experience->emp_skills : ''}}
CTC: {{!empty($empdetails->getBankDetail) ?$empdetails->getBankDetail->emp_salary : ''}}
Reporting To: {{$empdetails->reporting_email}}
Permanent Address: {{$empdetails->getAddressDetail->emp_permanent_address}}
Correspondence Address: {{$empdetails->getAddressDetail->emp_local_address}}
Date of birth: {{date('jS F, Y', strtotime($empdetails->getPersonalDetail->emp_dob))}}
Personal Contact no: {{$empdetails->emp_phone_first}}
Alternate Contact no: {{$empdetails->emp_phone_second}}
Personal Email Id: {{$empdetails->emp_email_first}}
Official Email Id: {{$empdetails->emp_email_second}}
Father Name: {{$empdetails->getPersonalDetail->emp_father_name}}
Father Contact No: {{$empdetails->getPersonalDetail->emp_phone_second}}
Blood Group : {{$empdetails->getPersonalDetail->emp_blood_group}}
Marital Status : {{$empdetails->getPersonalDetail->emp_martial_status}}
Date of Marriage : {{date('jS F, Y', strtotime($empdetails->getPersonalDetail->emp_dom))}}
Husband / Wife Name : {{$empdetails->getPersonalDetail->emp_husband_wife_name}}
No of Childrens : {{$empdetails->getPersonalDetail->emp_children}}

Education Qualification

10th Qualification
10th Passing Year: {{$empdetails->education->emp_tenth_year}}
Percentage/Grade: {{$empdetails->education->emp_tenth_percentage}}
Board Name {{$empdetails->education->emp_tenth_board_name}}
12th Qualification
12th Passing Year: {{$empdetails->education->emp_twelve_year}}
Percentage/Grade: {{$empdetails->education->emp_twelve_percentage}}
Board Name {{$empdetails->education->emp_twelve_board_name}}
Graduation
Graduation Passing Year/pursuing {{$empdetails->education->emp_graduation_year}}
Percentage/Grade: {{$empdetails->education->emp_graduation_percentage}}
Mode Of Graduation {{$empdetails->education->emp_graduation_mode}}
Degree Name {{$empdetails->education->emp_graduation_in}}
Post Graduation
Post Graduation Passing Year/pursuing {{$empdetails->education->emp_postgraduation_year}}
Percentage/Grade: {{$empdetails->education->emp_postgraduation_percentage}}
Mode Of Post Graduation {{$empdetails->education->emp_postgraduation_mode}}
Degree Name {{$empdetails->education->emp_postgraduation_in}}
Additional qualification
Diploam/Course/Certificate Name {{$empdetails->education->emp_certification}}
Duration
Marks/Percentage/Grade

Bank Details

Bank Name : {{!empty($empdetails->getBankDetail) && $empdetails->getBankDetail->getBankData ? $empdetails->getBankDetail->getBankData->name_of_bank : ''}}
Branch Name : {{!empty($empdetails->getBankDetail) ? $empdetails->getBankDetail->emp_branch : ''}}
Ifsc code : {{!empty($empdetails->getBankDetail) ? $empdetails->getBankDetail->emp_ifsc : ''}}
Account No : {{!empty($empdetails->getBankDetail) ? $empdetails->getBankDetail->emp_account_no : ''}}
Aadhar No : {{!empty($empdetails->getIdProofDetail) ?$empdetails->getIdProofDetail->emp_aadhaar_no : ''}}
Pan No : {{!empty($empdetails->getBankDetail) ? $empdetails->getBankDetail->emp_pan : ''}}

Other Details

PF UIN No : {{!empty($empdetails->getBankDetail) ? $empdetails->getBankDetail->emp_pf_no : ''}}
ESI No : {{!empty($empdetails->getBankDetail) ? $empdetails->getBankDetail->emp_esi_no : ''}}
Passport No. : {{!empty($empdetails->getIdProofDetail) ? $empdetails->getIdProofDetail->emp_passport_no : ''}}
Departments Recommendation :
Working Status: {{$empdetails->emp_current_working_status}}

Personal Documents

Resume : @if($empdetails->experience && $empdetails->experience->resume_file) View @endif
Aadhar Card : @if($empdetails->getIdProofDetail && $empdetails->getIdProofDetail->aadhar_card_doc) View @endif
Bank Doc : @if($empdetails->getIdProofDetail && $empdetails->getIdProofDetail->bank_doc) View @endif
Passport : @if($empdetails->getIdProofDetail && $empdetails->getIdProofDetail->passport_file) View @endif
Police Verification File : @if($empdetails->getIdProofDetail && $empdetails->getIdProofDetail->police_verification_file) View @endif
Pan Card : @if($empdetails->getIdProofDetail && $empdetails->getIdProofDetail->pan_card_doc) View @endif

Qualification Documents

10th Certificate : @if($empdetails->education && $empdetails->education->emp_tenth_doc) View @endif
12th Certificate : @if($empdetails->education && $empdetails->education->emp_twelve_doc) View @endif
Diploma Certificate : @if($empdetails->education && $empdetails->education->diploma_doc) View @endif
Graduation Certificate : @if($empdetails->education && $empdetails->education->grad_doc) View @endif
Post Graduation Certificate : @if($empdetails->education && $empdetails->education->post_grad_doc) View @endif
@endsection