@extends('hr_main') @section('title', '| Employee List') @section('content')
| SL | Name | Employee Id | Branch | Designation | Department | Permanent Date | ||
|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $empOrg->employee->emp_name_english ?? '' }} | {{ $empOrg->employee->emp_id ?? '' }} | {{ $empOrg->branch->name ?? '' }} | {{ $empOrg->position->name ?? '' }} | {{ $empOrg->departmentInfo->name ?? '' }} | {!! Form::hidden('organizationId[]',$empOrg->id) !!} {!! Form::text('permanentDate[]',$empOrg->permanent_date != '0000-00-00' ? date('d-m-Y', strtotime($empOrg->permanent_date) ) : null, ['class' => 'form-control datepicker text-center','autocomplete'=>'off']) !!} | ||
| No Data Found | ||||||||