@extends('layouts/acc_layout') @section('title', '| Cash Flow Statement Report') @section('content')

Cash Flow Statement Report

{!! Form::open(array('url' => './cashFlowStatementLoadTable', 'role' => 'form', 'class'=>'form-horizontal form-groups', 'id' => 'filteringFormId', 'method'=>'get')) !!}
{!! Form::label('', 'Project:', ['class' => 'control-label col-sm-12']) !!}
{!! Form::select('filProject', $projects, null ,['id'=>'filProject','class'=>'form-control input-sm','autocomplete'=>'off', 'autofocus', 'required']) !!}

{!! Form::label('', 'Project Type:', ['class' => 'control-label col-sm-12']) !!}

{!! Form::label('', 'Branch:', ['class' => 'control-label col-sm-12']) !!}
{!! Form::select('filBranch',$branchLists,null ,['id'=>'filBranch','class'=>'form-control input-sm','autocomplete'=>'off', 'autofocus', 'required'=>'required']) !!}

{!! Form::label('', 'Round Up:', ['class' => 'control-label col-sm-12']) !!}
{{----}}

{{-- start of zero balance --}}
{!! Form::label('', '\'0\' Balance:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('withZero',['1'=>'Yes','0'=>'No'], null,['id'=>'withZero','class'=>'form-control input-sm']) !!}
{{-- end of zero balance --}}
{!! Form::label('', 'Search By:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('searchMethod',['' => '--- Select ---', '1'=>'Fiscal Year','2'=>'Current Year'], null,['id'=>'searchMethod','class'=>'form-control input-sm', 'required']) !!}
@php $fyNames = $fiscalYears->pluck('name')->toArray(); $fyValues = $fiscalYears->pluck('id')->toArray(); @endphp {{-- Start of the to date --}} {{-- End of the to date --}}
{!! Form::label('', '', ['class' => 'control-label col-sm-12']) !!}
{!! Form::submit('Search', ['id' => 'filteringFormSubmit', 'class' => 'btn btn-primary btn-s animated fadeInRight', 'style'=>'font-size:12px']); !!}
{!! Form::close() !!} {{--
--}} {{--
--}}
@endsection