@extends('layouts/acc_layout') @section('title', '| Daily Fund Plan') @section('content')

Daily Fund Plan

Add Fund Demand @if (Auth::user()->branchId == 1 || $areaManager != null || $zonalManager != null) @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 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 input-sm', 'autocomplete' => 'off', ]) !!}

@endif {{--
{!! Form::label('authStatus', 'Status:', ['class' => 'control-label pull-left']) !!} {!! Form::select( 'authStatus', ['' => 'Select'] + $authStatus, request()->all('authStatus')['authStatus'] ?? '', ['class' => 'form-control', 'id' => 'authStatus'], ) !!}
--}}
{!! Form::label('', 'Date:', ['class' => 'control-label pull-left']) !!}
{!! Form::text('filDate', null, [ 'id' => 'filDate', 'class' => 'form-control input-sm', 'autocomplete' => 'off', 'required', ]) !!}
{!! 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 {{-- Delete Modal --}} {{-- End Delete Modal --}}