@extends('layout.sidebar') @section('content') @section('title','Cartas de pago') {{ Form::hidden('months', action('SchoolYearController@getInvoiceMonth', array()), array('id'=>'months')) }} {{ Form::hidden('students', action('PaymentCardController@getStudents', array()), array('id'=>'students')) }} {{ Form::hidden('secppaymentCard', action('PaymentCardController@postSendNotifications', array()), array('id'=>'secppaymentCard')) }} {{ Form::open(array('url' => action('ExportPaymentsController@postStudents'), 'class' => 'form-signin', 'method' => 'POST','id'=>'data')) }} {{Form::token();}}

ENVÍO DE CARTAS DE PAGO

{{ Form::label('serial_scy','Año Lectivo:', array('class' => 'col-md-5')) }}
{{ Form::select('serial_scy',$schoolYears,$currentScy,array('class'=>'form-control')) }}

{{ Form::label('serial_month','Mes:',array('class' => 'col-md-5')) }}
{{ Form::select('serial_month', array('' => 'Seleccione'), '', array('class'=>'form-control', 'id'=>'serial_month')) }}

{{ Form::label('serial_fin','Banco:', array('class' => 'col-md-5')) }}
{{ Form::select('serial_fin',array(''=>'-Seleccione-')+$fiantialInstitutions,null,array('class'=>'form-control','id'=>'serial_fin')) }}

{{Form::close()}} {{ HTML::script('js/paymentstm/paymentcard/index.js') }} @stop