@extends('layouts/microfin_layout') @section('title', '| Redo Mfn Auto Vouchers Process') @section('content') @php use App\Http\Controllers\microfin\MicroFin; use Carbon\Carbon; $branchList = MicroFin::getBranchList(); @endphp

Redo Mfn Auto Vouchers Process

{!! Form::open(array('url' => '', 'role' => 'form', 'class'=>'form-horizontal form-groups', 'id' => 'filterFormId', 'method'=>'get')) !!}
{!! Form::label('', 'Branch:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('branchId', ['0'=>'--All--']+$branchList, null ,['id'=>'branchId','class'=>'form-control input-sm','autocomplete'=>'off']) !!}
{!! Form::label('', 'From:', ['class' => 'control-label pull-left']) !!}
{!! Form::text('startMonth', null,['id'=>'startMonth','class'=>'form-control input-sm readonly', 'autocomplete'=>'off','style'=>'cursor:pointer;','required']) !!}
{!! Form::label('', 'To:', ['class' => 'control-label pull-left']) !!}
{!! Form::text('endMonth', null,['id'=>'endMonth','class'=>'form-control input-sm readonly', 'autocomplete'=>'off','style'=>'cursor:pointer;','required']) !!}
{!! Form::label('', ' ', ['class' => 'control-label pull-left']) !!}
{!! Form::submit('Run process', ['id' => 'runProcess', 'class' => 'btn btn-primary btn-sm']); !!}
{!! Form::close() !!}
{{-- panel-body panelBodyView DIV --}}
@endsection