@extends('hr_main') @section('title', '| Attendance Report') @section('content') @include('convert_word')

Attendance Report

{!! Form::open([ 'url' => './report/attendenceReportTable', 'role' => 'form', 'class' => 'form-horizontal form-groups', 'id' => 'filterFormId', 'method' => 'get', ]) !!}
{!! Form::label('branch', 'Branch', ['class' => 'control-label']) !!} {!! Form::select('branch_id', $d_a->branches, null, [ 'class' => 'form-control select2', 'id' => 'branch', 'name' => 'branch_id', 'required' => 'required', ]) !!}
{!! Form::label('employee', 'Employee', ['class' => 'control-label']) !!} @php $employeeLists = ['' => 'Select'] /* + DB::table('hr_emp_org_info') ->join('hr_emp_general_info', 'hr_emp_general_info.id', 'hr_emp_org_info.emp_id_fk') ->where('hr_emp_org_info.job_status', 'Present') ->where('hr_emp_org_info.status', 'Active') ->select(DB::raw("CONCAT( hr_emp_general_info.emp_id,' - ',hr_emp_general_info.emp_name_english) AS empName, hr_emp_general_info.id")) ->pluck('empName', 'hr_emp_general_info.id') ->all() */; @endphp {!! Form::select('employeeId', $employeeLists, null, [ 'class' => 'form-control select2', 'id' => 'employeeId', 'name' => 'employeeId', 'required' => 'required', ]) !!}

{{ $errors->error->first('employeeId') }}

@if(isset($generatedSourceTypes))
@endif

{!! Form::close() !!}
@endsection