@extends('layouts.layout') @section('content')
| S.No | Employee Name | Emp id | Location | Department | Designation From | Promotion Designation To | Promotion Date | @if($current_employee_designationid==3||$current_employee_designationid==30||$current_employee_designationid==11||$current_employee_designationid==10)Action | @endif
|---|---|---|---|---|---|---|---|---|
| {{$i}} | {{$emp->empolyee_name}} | {{$emp->empolyee_id}} | @if($devices!="" && count($devices)) @foreach($devices as $deviceslist) @if($emp->location_id==$deviceslist->DeviceId){{$deviceslist->DeviceFName}}@endif @endforeach @endif | {{$emp->department_name}} | @if($designation!="" && count($designation)) @foreach($designation as $designationlist) @if($emp->designation_from_id==$designationlist->D_ID){{$designationlist->Name}}@endif @endforeach @endif | @if($designation!="" && count($designation)) @foreach($designation as $designationlist) @if($emp->designation_to_id==$designationlist->D_ID){{$designationlist->Name}}@endif @endforeach @endif | {{$emp->efected_from}} | @if($current_employee_designationid==3||$current_employee_designationid==30||$current_employee_designationid==11||$current_employee_designationid==10)@endif |