@extends('hr_main') @section('title', '| Fund And Loan Report') @section('stylesheets') @endsection @section('content')

{{ $data['reportLabel'] }}


{!! Form::open(array('role' => 'form', 'class'=>'form-horizontal form-groups filter-form', 'method'=>'get')) !!}
{!! Form::select('filter[branch]', [''=>'Select any'], (isset($data['filter']['branch']))?$data['filter']['branch']:'', ['class' => 'form-control getUser', 'id'=>'filter_branch']) !!}
{!! Form::select('filter[user]', [''=>'Select any'], (isset($data['filter']['user']))?$data['filter']['user']:'', ['class' => 'form-control', 'id' => 'filter_user']) !!}
{!! Form::text('filter[end_date]', !empty($data['filter']['end_date']) ? $data['filter']['end_date']:'', ['class' => 'form-control datepicker', 'id' => 'filter_end_date', 'placeholder'=>'Select Date']) !!}
{!! Form::close() !!}
@if( $data['filtered'] )

{{ $data['foundationName'] }}

{{ $data['foundationAddress'] }}

{{ $data['reportLabel'] }}

As at {{ $data['endDate'] }}

Employee Information
@include('hr.report.fundAndLoan.table')
Fund Information
@include('hr.report.fundAndLoan.table2')
Loan Information
@include('hr.report.fundAndLoan.table3')
Prepared by
Checked by
Approved by
@endif
@endsection @section('footerAssets') @endsection