@extends('hr_main') @section('title', '| Vehicle Loan Receive Report') @section('content')

Vehicle Loan Receive List

{!! Form::open(array('role' => 'form', 'class'=>'form-horizontal form-groups filter-form', 'method'=>'get')) !!}
{!! Form::select('filter[project]', $data['easycode']::getProject(), (isset($data['filter']['project']))?$data['filter']['project']:'', ['class' => 'form-control getBranch', 'id'=>'filter_project']) !!}
{!! Form::select('filter[branch]', [''=>'Select any'], (isset($data['filter']['branch']))?$data['filter']['branch']:'', ['class' => 'form-control getUser', 'id'=>'filter_branch']) !!}
{!! Form::select('filter[user]', [''=>'Select any'], (isset($data['filter']['user']))?$data['filter']['user']:'', ['class' => 'form-control', 'id' => 'filter_user']) !!}
{!! Form::text('filter[start_month]', (isset($data['filter']['start_month']))?$data['filter']['start_month']:'', ['class' => 'form-control monthpicker', 'id' => 'filter_start_month', 'placeholder'=>'Start Month']) !!}
{!! Form::text('filter[end_month]', (isset($data['filter']['end_month']))?$data['filter']['end_month']:'', ['class' => 'form-control monthpicker', 'id' => 'filter_end_month', 'placeholder'=>'End Month']) !!}
{!! Form::close() !!}
 
@include('hr.report.vehicleloan.table', [$data])
@endsection @section('footerAssets')