@extends('layout.sidebar') @section('content') @section('title','INCIDENCIAS ADMINISTRACIÓN')

Administración de Incidencias


{{ Form::open(array('url' => 'incidenceStudent/report-attendance-incidence', 'method' => 'POST','id'=>'incidenceForm')) }} {{ Form::hidden('sectionLevelLoad', action('IncidenceStudentController@getSectionLevelSpecialtyByYear', array()), array('id'=>'sectionLevelLoad')) }} {{ Form::hidden('teachersLoad', action('IncidenceStudentController@getTeachersByYearSectionLevelSpecialty', array()), array('id'=>'teachersLoad')) }} {{ Form::hidden('scheduleByTeacherLoad', action('IncidenceStudentController@getScheduleByTeacher', array()), array('id'=>'scheduleByTeacherLoad')) }} {{ Form::hidden('studentsLoad', action('IncidenceStudentController@postStudentsAdmin', array()), array('id'=>'studentsLoad')) }} {{ Form::hidden('studentIncidencesRequirementLoad', action('IncidenceStudentController@postStudentIncidencesRequirementLoad', array()), array('id'=>'studentIncidencesRequirementLoad')) }} {{ Form::hidden('daysOffBySerialScy', action('IncidenceStudentController@getDaysOffBySerialScy', array()), array('id'=>'daysOffBySerialScy')) }} {{ Form::hidden('show_report', $show_report, array('id' => 'show_report')) }} {{ Form::hidden('sectionLoad', action('IncidenceStudentController@getSectionsByYear', array()), array('id'=>'sectionLoad')) }} {{ Form::token()}}
{{ Form::label('lblSchoolYear','Año Lectivo:') }}
{{ Form::select('serial_scy',$schoolYears,$currentScy['serial_scy'],array('class'=>'form-control selects','id'=>'serial_scy'))}}
{{ Form::label('lblFecha','Fecha:') }}
{{ Form::text('fecha', null, array('class'=>'form-control datepicker', 'placeholder'=>'yyyy-mm-dd', 'aria-describedby'=>'basic-addon3', 'id'=>'fecha')) }}
{{ Form::label('lblNameSecLvl','Sección-Nivel:') }}
{{ Form::select('serial_sec_lvl_spt',array('' => 'Seleccione'),'',array('class'=>'form-control','id'=>'serial_sec_lvl_spt')) }}
{{ Form::label('lblTeacher','Docente:') }}
{{ Form::select('serial_emp',array('' => 'Seleccione'),'',array('class'=>'form-control','id'=>'serial_emp')) }}
{{ Form::label('lblSchedule','Horario:') }}
{{ Form::select('serial_scd',['' => 'Seleccione'],'',array('class'=>'form-control selects','id'=>'serial_scd'))}}
{{Form::close()}} {{ HTML::script('js/incidenceStudent/index_admin.js') }} @stop