@extends('layouts.master') @section('content')
{{$title}}
@if(\Auth::user()->utype==1) Employee List Employee Edit

@endif

Employee Photo

{{$employee->name}}

{{$emp_details->designation->name}}

@foreach($emp_star as $row) @endforeach

  • Joining Date : {{ date("d-m-Y", strtotime($emp_details->joining_date)) }}
  • Date of birth : {{ date("d-m-Y", strtotime($employee->birth_day)) }}
  • Salary Grade : {{ $emp_details->grade->name }}
  • {{ @$employee->personal_email }}
  • {{ @$employee->phone }}
  • {{ @$employee->phone2 }}
  • {{ @$employee->facebook }}
  • {{ @$employee->skype }}
  • {{ @$employee->linkedin }}

About Me

Education

{{@$last_education->education_name->level_name}} from {{@$last_education->institute_name}} ({{@$last_education->major}}) - {{ date("Y", strtotime(@$last_education->passing_year)) }}


Present Address

{{ @$employee->present_address }}

Permanent Address

{{ @$employee->per_address }}


Notes

{{ @$employee->note }}

Employment History

@if($emp_details->type !=4)
@endif
@foreach($emp_history as $key => $epm_h) @endforeach
# Date Designation Grade Type
{{ ++$key }} {{ date("d-m-Y", strtotime(@$epm_h->joining_date)) }} {{ @$epm_h->designation->name }} {{ @$epm_h->grade->name }} @if(@$epm_h->type==1) @elseif($epm_h->type==2) @elseif($epm_h->type==3) @elseif($epm_h->type==4) @endif

Academic Information

@foreach($employee_education as $key => $emp_edu) @endforeach
# Education Institute Group CGPA Passing Year Duration
{{ ++$key }} {{ $emp_edu->education_name->level_name }} {{ $emp_edu->institute_name }} {{ $emp_edu->major }} {{ $emp_edu->marks }} {{ $emp_edu->passing_year }} {{ $emp_edu->duration }} Years

Work Experience

@foreach($employee_ewe as $exp => $emp_exp) @endforeach
# Org Name Org Contact Designation Start Date End Date
{{ ++$exp }} {{ $emp_exp->org_name }} {{ $emp_exp->org_contact }} {{ $emp_exp->designation->name }} {{ date("d-m-Y", strtotime($emp_exp->start_date)) }} {{ date("d-m-Y", strtotime($emp_exp->end_date)) }}

Reference / Emergence Contact

@foreach($employee_ref as $keyid => $emp_ref) @endforeach
# Person Name Relation Phone 1 Phone 2 Email Address
{{ ++$keyid }} {{ $emp_ref->person_name }} {{ $emp_ref->relation }} {{ $emp_ref->phone1 }} {{ $emp_ref->phone2 }} {{ $emp_ref->email }} {{ $emp_ref->address }}

Important File

@php $i=1; @endphp @foreach($employee_document as $emp_doc) @endforeach
# Document Type File
{{ $i++ }} {{ $emp_doc->document_type->document_name }} Download File

Payment History

@if($pay_history) @foreach($pay_history as $pay_history) @endforeach @endif
# Date Total Salary Paid Due Status
{{ $i++ }} {{ date("d/m/Y", strtotime(@$pay_history->date)) }} {{ number_format( @$pay_history->gross_amount,2) }} {{ number_format( @$pay_history->paid_amount,2) }} {{ number_format( $total_due = @$pay_history->gross_amount - @$pay_history->paid_amount,2) }} @if($total_due <= 0) @else @endif
@endsection