@extends('layouts/acc_layout') @section('title', '| Trial balance Report') @section('content')

Trial Balance Report

{!! Form::open(array('url' => './trialBalanceLoadReport', 'role' => 'form', 'class'=>'form-horizontal form-groups', 'id' => 'filteringFormId', 'method'=>'get')) !!} @if($userBranchId == 1)
{!! 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', $branchLists, null ,['id'=>'filBranch','class'=>'form-control input-sm','autocomplete'=>'off']) !!}

@endif
{!! 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 depth level --}}
{!! Form::label('', 'Depth Level:', ['class' => 'control-label col-sm-12']) !!}
{!! Form::select('depthLevel',[ 0=>'All', 1=>'Level-1', 2=>'Level-2', 3=>'Level-3', 4=>'Level-4'],null ,['id'=>'filDepthLevel','class'=>'form-control input-sm','autocomplete'=>'off', 'autofocus', 'required'=>'required']) !!}
{{-- end of depth level --}} {{-- 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'=>'Date Range'], null,['id'=>'searchMethod','class'=>'form-control input-sm', 'required']) !!}
@php $yearArr = []; foreach ($fiscalYears->sortByDesc('name') as $key => $year) { $yearArr[$year->id] = $year->name; } // dd($yearArr); @endphp {{-- Start of the from date --}} {{-- End of the from date --}} {{-- 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