@extends('layouts/acc_layout') @section('title', '| VAT Register Report') @section('content') @php use App\Service\UserUtility; $hasAccessToViewAllProjects = UserUtility::hasAccessToViewAllProjects(); @endphp

Advance Payment Report

{{--
--}} {{--
--}} {!! Form::open(array('url' => '', 'role' => 'form', 'class'=>'form-horizontal form-groups', 'id' => 'filteringFormId', 'method'=>'get')) !!} @if($userBranchId==1)
{!! Form::label('', 'Project Name:', ['class' => 'control-label col-sm-12']) !!}
@php if(!$hasAccessToViewAllProjects) unset($projects[current(array_keys($projectList))]); @endphp {!! Form::select('filProject', $projectList, null ,['id'=>'filProject','class'=>'form-control input-sm','autocomplete'=>'off', 'autofocus', 'required !important']) !!}

@endif @if($userBranchId==1)
{!! Form::label('', 'Project Type :', ['class' => 'control-label col-sm-12']) !!}
{!! Form::select('filProjectType',$projectType,null,['id'=>'filProjectType','class'=>'form-control input-sm','autocomplete'=>'off', 'autofocus', 'required !important']) !!}

@endif @if($userBranchId==1)
{!! Form::label('', 'Advance Type:', ['class' => 'control-label col-sm-12']) !!}
{!! Form::select('filadvType', $advRegisterType, null ,['id'=>'filadvType','class'=>'form-control input-sm','autocomplete'=>'off', 'autofocus', 'required !important']) !!}

@endif @if($userBranchId==1)
{!! Form::label('', 'Search Type:', ['class' => 'control-label col-sm-12']) !!}
@endif @if($userBranchId==1)
{!! Form::label('', 'Employee:', ['class' => 'control-label col-sm-12','id'=>'filEmployeeL']) !!}
{!! Form::select('filEmployee', $employeeList, null ,['id'=>'filEmployee','class'=>'form-control input-sm','autocomplete'=>'off', 'autofocus', 'required !important']) !!}

@endif @if($userBranchId==1)
{!! Form::label('', 'Supplier:', ['class' => 'control-label col-sm-12','id'=>'filSupplierL']) !!}
{!! Form::select('filSupplier', $supplierList, null ,['id'=>'filSupplier','class'=>'form-control input-sm','autocomplete'=>'off', 'autofocus', 'required !important']) !!}

@endif @if($userBranchId==1)
{!! Form::label('', 'House Owner:', ['class' => 'control-label col-sm-12','id'=>'filHouseOwnerL']) !!}
{!! Form::select('filHouseOwner', $houseOwnerList, null ,['id'=>'filHouseOwner','class'=>'form-control input-sm','autocomplete'=>'off', 'autofocus', 'required !important']) !!}

@endif
{!! Form::label('from', 'From:', ['class' => 'col-sm-12 control-label']) !!}
{!! Form::text('filStartDate',$toDate,['class' => 'form-control input-sm','style'=>'cursor:pointer', 'id' => 'filStartDate', 'readonly','autocomplete'=>'off', 'autofocus', 'required'])!!}

{!! Form::label('from', 'To:', ['class' => 'col-sm-12 control-label']) !!}
{!! Form::text('filEndDate',$toDate, ['class' => 'form-control input-sm','style'=>'cursor:pointer', 'id' => 'filEndDate', 'readonly','autocomplete'=>'off', 'autofocus', 'required'])!!}

{!! 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