@extends('layouts/microfin_layout') @section('title', '| Savings Interest Provision Statement') @section('content')
{{-- --}} {{--
  • .XLSX
  • --}} {{-- Download as Text File --}} {{-- --}} {{--
    --}}
    {{-- --}} {{-- --}}

    Savings Interest Provision Statement

    {!! Form::open([ 'url' => '', 'role' => 'form', 'class' => 'form-horizontal form-groups', 'id' => 'filterFormId', 'method' => 'get', ]) !!}
    @if (!in_array($userRoleId, Config('services.branch_level_user_roles')))
    {!! Form::label('filReportLevel', 'Report Level:', ['class' => 'control-label pull-left']) !!}
    {!! Form::select('filReportLevel', $reportLevelList, null, [ 'id' => 'filReportLevel', 'class' => 'form-control input-sm', 'autocomplete' => 'off', 'autofocus', ]) !!}
    {!! Form::label('filBranchE', 'Branch:', ['class' => 'control-label pull-left']) !!}
    {!! Form::select('filBranch', ['' => '--All--'] + $branchList, null, [ 'id' => 'filBranch', 'class' => 'form-control input-sm', 'autocomplete' => 'off', ]) !!}

    @endif @if (in_array($userRoleId, Config('services.branch_level_user_roles')))
    {!! Form::label('filBranch', 'Branch:', ['class' => 'control-label pull-left']) !!}
    {!! Form::select('filBranch', $branchList, null, [ 'id' => 'filBranch', 'class' => 'form-control input-sm', 'autocomplete' => 'off', ]) !!}

    @endif
    {!! Form::label('filType', 'Type:', ['class' => 'control-label pull-left']) !!}
    {!! Form::label('filProduct', 'Product:', ['class' => 'control-label pull-left']) !!}
    {!! Form::label('filDateFrom', 'Date From:', ['class' => 'control-label pull-left']) !!}
    {!! Form::text('filDateFrom', null, [ 'id' => 'filDateFrom', 'class' => 'form-control input-sm', 'autocomplete' => 'off', 'required' => 'required', 'readonly', 'style' => 'cursor:pointer', ]) !!}
    {!! Form::label('filDateTo', 'Date To:', ['class' => 'control-label pull-left']) !!}
    {!! Form::text('filDateTo', null, [ 'id' => 'filDateTo', 'class' => 'form-control input-sm', 'autocomplete' => 'off', 'required' => 'required', 'readonly', 'style' => 'cursor:pointer', ]) !!}
    {!! Form::label('', 'Funding Org.:', ['class' => 'control-label pull-left']) !!}
    {!! Form::select('filFundingOrg', ['' => '--All--', '-1' => 'PKSF & Others'] + $fundingOrgList, null, [ 'id' => 'filFundingOrg', 'class' => 'form-control input-sm', 'autocomplete' => 'off', ]) !!}

    {!! Form::label('optionId', 'Report Opt:', ['class' => 'control-label pull-left']) !!}
    {!! Form::select('optionId', ['0' => 'Summary', '1' => 'Details'], null, [ 'id' => 'optionId', 'class' => 'form-control input-sm', 'autocomplete' => 'off', 'required' => 'required', ]) !!}
    {!! Form::label('', 'Show Column:', ['class' => 'control-label pull-left']) !!}
    {!! Form::select( 'showColumn[]', ['1' => 'Member Old Code', '2' => 'NID', '3' => 'Mobile', '4' => 'Signature'], null, ['id' => 'showColumn', 'class' => 'form-control input-sm', 'multiple'], ) !!}
    {!! Form::label('', '', ['class' => 'control-label col-md-12']) !!}
    {!! Form::submit('Show Report', ['id' => 'reportSubmit', 'class' => 'btn btn-primary btn-xs']) !!}
    {!! Form::close() !!}
    {{-- panel-body panelBodyView DIV --}}
    @endsection