@extends('layout.sidebar') @section('content') @section('title','Estudiantes con pagos pendientes') {{ Form::hidden('students', action('NotificationController@postStudents', array()), array('id'=>'students')) }} {{ Form::hidden('sendemails', action('NotificationController@postSendEmails', array()), array('id'=>'sendemails')) }} {{ Form::hidden('studentDettailHtml', action('PaymentManageController@postPaymentStudentDetail', array()), array('id'=>'studentDettailHtml')) }} {{ Form::hidden('studentDettailExcel', action('PaymentManageController@getPaymentStudentDetailExcel', array()), array('id'=>'studentDettailExcel')) }} {{ Form::hidden('sendEmailToGuardians', action('PaymentManageController@postSendMailToGuardians', array()), array('id'=>'sendEmailToGuardians')) }} {{ Form::open(array('url' => action('NotificationController@postStudents'), 'class' => 'form-signin', 'method' => 'POST','id'=>'data')) }} {{Form::token();}}
NOTIFICACIONES
{{ Form::label('serial_scy','Año Lectivo:', array('class' => 'control-label col-md-6')) }}
{{ Form::select('serial_scy',$schoolYears,$currentScy,array('class'=>'form-control')) }}
{{ Form::label('serial_txn','Tipo de notificación:',array('class' => 'control-label col-md-6')) }}
{{ Form::select('serial_txn',$textEmails,'',array('class'=>'form-control')) }}
{{ Form::label('type_std','Tipo de estudiante:',array('class'=>'col-md-6 control-label')) }}
{{ Form::select('type_std', array('BOTH'=>'AMBOS','NEW'=>'NUEVO','OLD'=>'ANTIGUO'), 'NEW', array('class'=>'form-control type_std', 'id'=>'type_std')) }}
Estudiantes
{{Form::close()}} {{ HTML::script('js/paymentstm/notification/index.js') }} @stop