@extends('layouts/microfin_layout') @section('title', '| Loan Write Off Collection List') @section('content')

LOAN WRITE OFF COLLECTIONS LIST

{!! Form::open(array('url' => '', 'role' => 'form', 'class'=>'form-horizontal form-groups', 'id' => 'filterFormId', 'method'=>'get')) !!}
@if(!in_array($userRoleId, Config('services.branch_level_user_roles')))
{!! Form::label('', 'Branch:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('filBranch', [''=>'--All--']+$branchList, null ,['id'=>'filBranch','class'=>'form-control input-sm','autocomplete'=>'off']) !!}
@endif
{!! Form::label('', 'Samity:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('filSamity', [''=>'--All--']+$samityList, null ,['id'=>'filSamity','class'=>'form-control input-sm','autocomplete'=>'off']) !!}
{!! Form::label('', 'Search Key:', ['class' => 'control-label pull-left']) !!}
{!! Form::text('filSearchKey',null ,['id'=>'filSearchKey','class'=>'form-control input-sm','autocomplete'=>'off']) !!}
{!! Form::label('', 'Date From:', ['class' => 'control-label pull-left']) !!}
{!! Form::text('filDateFrom',null ,['id'=>'filDateFrom','class'=>'form-control input-sm','autocomplete'=>'off','readonly','style'=>'cursor:pointer;']) !!}
{!! Form::label('', 'Date To:', ['class' => 'control-label pull-left']) !!}
{!! Form::text('filDateTo',null ,['id'=>'filDateTo','class'=>'form-control input-sm','autocomplete'=>'off','readonly','style'=>'cursor:pointer;']) !!}
{!! Form::label('', '', ['class' => 'control-label col-md-12']) !!}
{!! Form::submit('Search', ['id' => 'search', 'class' => 'btn btn-primary btn-xs']); !!}
{!! Form::close() !!}
@include('microfin.loan.loanWriteOff.writeOffCollectionList', [ 'writeOffcollections' => $initialData['writeOffcollections'], 'loans' => $initialData['loans'], 'samities' => $initialData['samities'], 'members' => $initialData['members'], 'softwareDate' => $initialData['softwareDate'] ])
{{-- panel-body panelBodyView DIV --}}
@endsection