@extends('layouts/microfin_layout') @section('title', '| Interest Provision Hold List') @section('content') @php use \App\Http\Controllers\microfin\savings\MfnSavingsDepositTypeController as createForm; $pageNo = isset($_GET['page']) ? (int) $_GET['page']: 1; $branchSelected = isset($_GET['filBranch']) ? $_GET['filBranch'] : null; @endphp

Interest Provision Hold List

{!! Form::open(array('url' => Request::url(), 'role' => 'form', 'class'=>'form-horizontal form-groups', 'id' => 'filterFormId', 'method'=>'get')) !!}
{!! Form::label('', 'Branch:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('filBranch', [''=>'--All--']+$branchList, $branchSelected ,['id'=>'filBranch','class'=>'form-control input-sm','autocomplete'=>'off']) !!}
{!! Form::label('', '', ['class' => 'control-label col-md-12']) !!}
{!! Form::submit('Search', ['id' => 'searchButton', 'class' => 'btn btn-primary btn-xs']); !!}
{!! Form::close() !!} @foreach ($provisionHold as $key => $v) @endforeach
SL# MONTH PRODUCT Branch(es) Action
{{($pageNo-1)*150+($key+1)}} {{ date('F-Y', strtotime($v->effect_to))}} {{$v->name}} {{ \Illuminate\Support\Str::limit($v->holdBranches, $limit = 100, $end = '...') }}
{{ $provisionHold->appends(request()->input())->links() }}
@endsection {{-- Delete Modal --}} {{-- End Delete Modal --}}