@extends('layout.sidebar') @section('title','Reporte de incidencias por parcial') @section('content') {{ Form::hidden('sections', action('SectionController@getSectionsbyschoolyearoptions', array()), array('id'=>'sections')) }} {{ Form::hidden('levels', action('LevelController@getActiveLevels', array()), array('id'=>'levels')) }} {{ Form::hidden('courses', action('CourseController@getCoursesByLevelSectionYearOptions', array()), array('id'=>'courses')) }} {{ Form::hidden('periods', action('PeriodController@getPeriodsbycourseoptions', array()), array('id'=>'periods')) }} {{ Form::hidden('subperiods', action('SubperiodController@getSubperiodsbyperiod', array()), array('id'=>'subperiods')) }} {{ Form::hidden('currentSchoolYear',$currentSchoolYear->serial_scy, array('id'=>'currentSchoolYear')) }} {{ Form::open(array('class'=>'form-signin','id'=>'frm_students','url'=>action('StudentIncidenceController@postCompleteReport',array()))) }}
{{ Form::select('serial_scy',$schoolYears,$currentSchoolYear->serial_scy,array('id'=>'serial_scy','class'=>'form-control')) }}
{{ Form::label('serial_set','2. Sección:',array('class'=>'col-md-6 col-sm-6 control-label')) }}
{{ Form::select('serial_set',array(''=>'Seleccione'),'',array('id'=>'serial_set','class'=>'form-control')) }}
{{ Form::label('serial_lvl','3. Nivel:',array('class'=>'col-md-6 col-sm-6 control-label')) }}
{{ Form::select('serial_lvl',array(''=>'Seleccione'),'',array('id'=>'serial_lvl','class'=>'form-control')) }}
{{ Form::label('serial_crs','4. Paralelo:',array('class'=>'col-md-6 col-sm-6 control-label')) }}
{{ Form::select('serial_crs',array(''=>'Seleccione'),'',array('id'=>'serial_crs','class'=>'form-control')) }}
{{ Form::label('serial_prd','5. Periodo:',array('class'=>'col-md-6 col-sm-6 control-label')) }}
{{ Form::select('serial_prd',array(''=>'Seleccione'),'',array('id'=>'serial_prd','class'=>'form-control')) }}
{{ Form::label('serial_sbp','5. Subperiodo:',array('class'=>'col-md-6 col-sm-6 control-label')) }}
{{ Form::select('serial_sbp',array(''=>'Seleccione'),'',array('id'=>'serial_sbp','class'=>'form-control')) }}
{{Form::close()}} {{ HTML::script('js/gradeReport/incidence/indexCompleteReport.js') }} @stop()