@extends('hr_main') @section('title', '| Employee List (With Salary)') @section('content')

Total Employee List (With Salary)

{!! Form::open(array('url' => './hr/report/totalEmployeeListWithSalaryTable', 'role' => 'form', 'class'=>'form-horizontal form-groups', 'id' => 'filterFormId', 'method'=>'get')) !!}
{!! Form::select('filter[projectId]', $projects, (isset($data['filter']['projectId']))?$data['filter']['projectId']:'', ['class' => 'form-control getProjectType', 'id'=>'filter_project']) !!}
{!! Form::select('filter[project_type_id_fk]',$projectTypes, (isset($data['filter']['project_type_id_fk']))?$data['filter']['project_type_id_fk']:'', ['class' => 'form-control getBranch', 'id'=>'project_type_id_fk']) !!}
{!! Form::select('filter[branch]', $branches, (isset($data['filter']['branch']))?$data['filter']['branch']:'', ['class' => 'form-control hr-select2', 'id'=>'filter_branch']) !!}
{!! Form::select('filter[position]', $positions, (isset($data['filter']['position']))?$data['filter']['position']:'', ['class' => 'form-control']) !!}
{!! Form::select('filter[department]', $departments, (isset($data['filter']['department']))?$data['filter']['department']:'', ['class' => 'form-control']) !!}
{!! Form::select('filter[grade]', $grades, (isset($data['filter']['grade']))?$data['filter']['grade']:'', ['class' => 'form-control']) !!}
@php // dd($data['filter']); @endphp
{!! Form::text('filter[activeTill]', $data['filter']['activeTill']??"", ['id'=>'activeTill','placeholder'=>'Month', 'autocomplete' => 'off','class'=>'form-control', 'style'=>'cursor:pointer', 'title'=>'Month']) !!}
{!! Form::close() !!}
 
@endsection @section('footerAssets')