@extends('hr_main') @section('title', '| Employee List') @section('content')
Manage Org Info
{!! Form::open(array( 'url' => route('orgInfoManagement.index'), 'class'=>'form-horizontal', 'method'=>'GET')) !!}
{!! Form::select('projectId',[ 0 => "All Project" ] + $projects, $selectedProjectId, ['class' => 'form-control getBranch', 'id'=>'filter_project']) !!}
{!! Form::select('branchId', [ 0 => "All Branch" ] + $branches, $selectedBranchId, ['class' => 'form-control hr-select2', 'id'=>'filter_branch']) !!}
{!! Form::select('positionId', [ 0 => "All Position" ] + $positions, $selectedPositionId , ['class' => 'form-control']) !!}
{!! Form::select('recruitmentTypeId', [ 0 => "All Recruitment Type" ] + $recruitmentTypes, $selectedRecruitmentTypeId , ['class' => 'form-control']) !!}
{!! Form::close() !!}
 
{!! Form::open(array( 'url' => route('orgInfoManagement.store'), 'method'=>'GET')) !!} @if($empOrgList && $empOrgList->count() > 0) @foreach ($empOrgList as $empOrg) @endforeach @else @endif
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
{!! Form::close() !!}
@endsection @section('footerAssets')