@extends('layouts/acc_layout') @section('title', '| Late Collection') @section('content')

Late Collection Deposit List

@if($userBranchId == 1) @endif
{!! Form::open([ 'url' => '', 'role' => 'form', 'class' => 'form-horizontal form-groups', 'id' => 'filterFormId', 'method' => 'get', ]) !!}
{{--
--}} @if (!in_array($userRoleId, Config('services.branch_level_user_roles')))
{!! Form::label('', 'Report Level:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('filReportLevel', $reportLevelList, null, [ 'id' => 'filReportLevel', 'class' => 'form-control input-sm', 'autocomplete' => 'off', 'autofocus', ]) !!}
{!! Form::label('', 'Branch:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('filBranch', ['' => '--All--'] + $branchList, null, [ 'id' => 'filBranch', 'class' => 'form-control custom-select2 input-sm', 'autocomplete' => 'off', ]) !!}

@endif @if (in_array($userRoleId, Config('services.branch_level_user_roles')))
{!! Form::label('', 'Branch:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('filBranch', $branchList, null, [ 'id' => 'filBranch', 'class' => 'form-control custom-select2 input-sm', 'autocomplete' => 'off', ]) !!}

@endif
{!! Form::label('', 'Date:', ['class' => 'control-label pull-left']) !!}
{!! Form::text('filDate', null, [ 'id' => 'filDate', 'class' => 'form-control input-sm', 'autocomplete' => 'off', ]) !!}
{!! Form::label('', 'Start Date:', ['class' => 'control-label pull-left']) !!}
{!! Form::text('filStartDate', null, [ 'id' => 'filStartDate', 'class' => 'form-control input-sm', 'autocomplete' => 'off', ]) !!}
{!! Form::label('', 'End Date:', ['class' => 'control-label pull-left']) !!}
{!! Form::text('filEndDate', null, [ 'id' => 'filEndDate', 'class' => 'form-control input-sm', 'autocomplete' => 'off', ]) !!}
{!! Form::label('', '', ['class' => 'control-label col-md-12']) !!}
{!! Form::submit('Show ', ['id' => 'reportSubmit', 'class' => 'btn btn-primary btn-xs']) !!}
{!! Form::close() !!}
{{-- panel-body panelBodyView DIV --}}
@endsection