@extends('layout.sidebar') @section('content') @section('title','Seguimiento de registro de notas') {{ Form::hidden('periodGroupYears', action('PeriodGroupYearController@getPeriodGroupYearBySchoolYear', array()), array('id'=>'periodGroupYears')) }} {{ Form::hidden('periods', action('PeriodController@getPeriodsByPeriodGroupYear', array()), array('id'=>'periods')) }} {{ Form::hidden('sections', action('SectionController@getSectionsByPeriodGroupYear', array()), array('id'=>'sections')) }} {{ Form::hidden('courses', action('CourseController@getAllbysectionoptionsall', array()), array('id'=>'courses')) }} {{ Form::hidden('employees', action('CourseController@getTeachers', array()), array('id'=>'employees')) }} {{ Form::hidden('report', action('TeacherTrackingController@postReport', array()), array('id'=>'report')) }} {{ Form::hidden('report', action('TeacherTrackingController@postReport', array()), array('id'=>'report')) }}

SEGUIMIENTO DE REGISTRO DE NOTAS


{{ Form::open(array('url' => action('TeacherTrackingController@postReport', array()),'id'=>'frmData')) }}
{{Form::select('serial_scy',$schoolYears,$currentSchoolYear->serial_scy,array('class'=>"form-control",'id'=>'serial_scy')) }}
{{Form::select('serial_pgy',array(''=>'-Seleccione-'),'',array('class'=>"form-control",'id'=>'serial_pgy')) }}
{{Form::select('serial_prd',array(''=>'-Seleccione-'),'',array('class'=>"form-control",'id'=>'serial_prd')) }}
{{Form::select('serial_set',array(''=>'-Seleccione-'),'',array('class'=>"form-control",'id'=>'serial_set')) }}
{{Form::select('serial_crs',array(''=>'-Seleccione-'),'',array('class'=>"form-control",'id'=>'serial_crs')) }}
{{Form::select('serial_emp',array(''=>'-Seleccione-'),'',array('class'=>"form-control",'id'=>'serial_emp')) }}
{{Form::select('completed',array('ALL'=>'TODOS','YES'=>'SI','NO'=>'NO'),'',array('class'=>"form-control",'id'=>'completed')) }}
{{ Form::close() }}
{{ HTML::script('js/teacherTracking/index.js') }} @stop