@extends('layout.sidebar') @section('content') @section('title','REPORTE DE INCIDENCIAS') {{ Form::hidden('profile', $profile, array('id' => 'profile')) }} {{ Form::hidden('studentsLoad', action('IncidenceStudentController@getStudentsBySchoolYear', array()), array('id'=>'studentsLoad')) }} {{ Form::hidden('periodsLoad', action('IncidenceStudentController@getPeriodsByStudentSchoolYear', array()), array('id'=>'periodsLoad')) }} {{ Form::hidden('subperiodsLoad', action('IncidenceStudentController@getSubperiodsByPeriod', array()), array('id'=>'subperiodsLoad')) }} {{ Form::hidden('incidencesLoad', action('IncidenceStudentController@getIncidencesByStudentYearPeriod', array()), array('id'=>'incidencesLoad')) }} {{ Form::token() }}

Incidencias


{{ Form::label('lblSchoolYear','Año Lectivo:') }}
{{ Form::select('serial_scy',$schoolYearList,$selectedSchoolYear,array('class'=>'form-control selects','id'=>'serial_scy'))}}
{{ Form::label('lblStudent','Estudiante:') }}
@if ($profile == '2') {{ Form::select('serial_std', $studentsList,$selectedStudent,array('class'=>'form-control','id'=>'serial_std')) }} @elseif ($profile == '3') {{ Form::hidden('serial_std', $loggedStudent, array('id' => 'serial_std')) }} @endif
{{ Form::label('lblPeriod','Periodo:') }}
{{ Form::select('serial_period',array('' => 'Seleccione'),'',array('class'=>'form-control','id'=>'serial_period')) }}
{{ Form::label('lblsubPeriod','Subperiodo:') }}
{{ Form::select('serial_subperiod',array('' => 'Seleccione'),'',array('class'=>'form-control','id'=>'serial_subperiod')) }}

{{ HTML::style('css/skillsSetup/index.css') }} {{ HTML::script('js/incidenceStudent/guardian/index.js') }} @stop