@extends('layouts/default') {{-- Page title --}} @section('title') @parent @stop {{-- page level styles --}} @section('header_styles') @stop {{-- Page content --}} @section('content')

Employee

@if(Session::has('message'))

{{ Session::get('message') }}

@endif

Employee Details

@php $department=$division='';@endphp @foreach($departments as $drow) @endforeach @foreach($divisions as $drow) @endforeach
Department {{ $department }}
Employee ID {{ $masterrow->code }}
Employee Name {{ $masterrow->name }}
Designation {{ $masterrow->designation }}
Division {{ $division}}
Nationality {{ $masterrow->nationality }}
Date of Birth {{($masterrow->dob=='0000-00-00')?'':date('d-m-Y', strtotime($masterrow->dob))}}
Gender {{ ($masterrow->gender==1)?'Male':'Female' }}
Residance Address {{ $masterrow->address1 }}
Residance Phone No {{ $masterrow->phone }}
Home Address {{ $masterrow->address2 }}
Home Phone No {{ $masterrow->phone2 }}
Email {{ $masterrow->email }}
Join Date {{($masterrow->join_date=='0000-00-00')?'':date('d-m-Y', strtotime($masterrow->join_date))}}
Rejoin Date {{ ($masterrow->rejoin_date=='0000-00-00')?'':date('d-m-Y', strtotime($masterrow->rejoin_date))}}
Duty Status on Leave
Photo
Passport ID {{$masterrow->pp_id}}
Issue Date {{($masterrow->pp_issue_date=='0000-00-00')?'':date('d-m-Y', strtotime($masterrow->pp_issue_date))}}
Expiry Date {{($masterrow->pp_expiry_date=='0000-00-00')?'':date('d-m-Y', strtotime($masterrow->pp_expiry_date))}}
Issued Place {{$masterrow->pp_issue_place}}
Passport Image
Visa Designation {{$masterrow->v_designation}}
Visa ID {{$masterrow->v_id}}
Issue Date {{($masterrow->v_issue_date=='0000-00-00')?'':date('d-m-Y', strtotime($masterrow->v_issue_date))}}
Expiry Date {{($masterrow->v_expiry_date=='0000-00-00')?'':date('d-m-Y', strtotime($masterrow->v_expiry_date))}}
Visa Image
Labour Card ID {{$masterrow->lc_id}}
Issue Date {{($masterrow->lc_issue_date=='0000-00-00')?'':date('d-m-Y', strtotime($masterrow->lc_issue_date))}}
Expiry Date {{($masterrow->lc_expiry_date=='0000-00-00')?'':date('d-m-Y', strtotime($masterrow->lc_expiry_date))}}
Labour Card Image
Health Card ID {{$masterrow->hc_id}}
Issue Date {{($masterrow->hc_issue_date=='0000-00-00')?'':date('d-m-Y', strtotime($masterrow->hc_issue_date))}}
Expiry Date {{($masterrow->hc_expiry_date=='0000-00-00')?'':date('d-m-Y', strtotime($masterrow->hc_expiry_date))}}
Health Card Info {{$masterrow->hc_info}}
Health Card Image
ID Card {{$masterrow->ic_id}}
Issue Date {{($masterrow->ic_issue_date=='0000-00-00')?'':date('d-m-Y', strtotime($masterrow->ic_issue_date))}}
Expiry Date {{($masterrow->ic_expiry_date=='0000-00-00')?'':date('d-m-Y', strtotime($masterrow->ic_expiry_date))}}
ID Card Image
Medical Exam ID {{$masterrow->me_id}}
Issue Date {{($masterrow->me_issue_date=='0000-00-00')?'':date('d-m-Y', strtotime($masterrow->me_issue_date))}}
Expiry Date {{($masterrow->me_expiry_date=='0000-00-00')?'':date('d-m-Y', strtotime($masterrow->me_expiry_date))}}
Image
Contract Status Unlimited
Basic Pay {{number_format($masterrow->basic_pay,2)}}
HRA {{number_format($masterrow->hra,2)}}
Transport {{number_format($masterrow->transport,2)}}
Allowance1 {{number_format($masterrow->allowance,2)}}
Allowance2 {{number_format($masterrow->allowance2,2)}}
Net Salary {{number_format($masterrow->net_salary,2)}}
Normal Workign Hr. {{$masterrow->nwh}}
Normal Wage by
OT Wage by
Leave/Month for AL {{$masterrow->lev_per_mth}}
Alloted Anual ML {{$masterrow->anual_ml}}
Air Ticket Allotment after {{($masterrow->air_tkt > 0)?$masterrow->air_tkt:''}}
Alloted Anual CL {{$masterrow->anual_cl}}
Remarks {{$masterrow->remarks}}
Other Info {{$masterrow->other_info}}
@permission('leave') Leave Process @endpermission @permission('rejoin') Rejoin @endpermission @permission('undo-rejoin') Undo Rejoin @endpermission @permission('termn-resign') Termination/Resignation @endpermission Back
@include('layouts.right_sidebar')
@stop {{-- page level scripts --}} @section('footer_scripts') @stop