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

Attendance Details Report

{!! Form::open([ 'url' => '#', '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('project', 'Project', ['class' => 'control-label']) !!} {!! Form::select('project_id', $d_a->projects, null, [ 'class' => 'form-control select2', 'id' => 'project_id', 'name' => 'project_id', ]) !!}
{!! Form::label('employee', 'Employee', ['class' => 'control-label']) !!} {!! Form::select('employeeId', ['' => 'All'], null, [ 'class' => 'form-control select2', 'id' => 'employeeId', 'name' => 'employeeId', ]) !!}

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

@if(isset($generatedSourceTypes))
@endif

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