@extends('layout.sidebar') @section('content') @section('title','TUTORÍAS') {{ Form::hidden('sections', action('SectionController@getSectionsBySchoolYearByTutorProfile', array()), array('id'=>'sections')) }} {{ Form::hidden('courses', action('CourseController@getAllBySectionAndEmployeeProfile', array()), array('id'=>'courses')) }} {{ Form::hidden('studentsByCourse', action('StudentController@getStudentsByCourse', array()), array('id'=>'studentsByCourse')) }} {{ Form::hidden('studentSchoolRecord', action('StudentSchoolRecordController@getStudentSchoolRecord', array()), array('id'=>'studentSchoolRecord')) }} {{ Form::hidden('newPriorInformation', action('StudentSchoolRecordController@postNewPriorInformation', array()), array('id'=>'newPriorInformation')) }} {{ Form::hidden('editPriorInformationMethod', action('StudentSchoolRecordController@postEditPriorInformation', array()), array('id'=>'editPriorInformationMethod')) }} {{ Form::hidden('deletePriorInformationMethod', action('StudentSchoolRecordController@postDeletePriorInformation', array()), array('id'=>'deletePriorInformationMethod')) }} {{ Form::hidden('newStudentRecord', action('StudentSchoolRecordController@postNewRecordInformation', array()), array('id'=>'newStudentRecord')) }} {{ Form::hidden('editStudentRecord', action('StudentSchoolRecordController@postEditRecordInformation', array()), array('id'=>'editStudentRecord')) }} {{ Form::hidden('deleteStudentRecord', action('StudentSchoolRecordController@postDeleteRecordInformation', array()), array('id'=>'deleteStudentRecord')) }}

TUTORÍAS

{{ Form::label('serial_scy','1. '.Global_Functions::changeTitles('Año Lectivo').':',array('class'=>'col-md-4 control-label')) }}
{{ Form::select('serial_scy',$schoolYears,$currentSchoolYear->serial_scy,array('class'=>'form-control','id'=>'serial_scy')) }}
{{ Form::label('section','2. Sección:',array('class'=>'col-md-4 control-label')) }}
{{ Form::select('serial_set',array(''=>'-Seleccione-'),'',array('class'=>'form-control','id'=>'serial_set')) }}
{{ Form::label('course','3. Curso:',array('class'=>'col-md-4 control-label')) }}
{{ Form::select('serial_crs',array(''=>'-Seleccione-'),'',array('class'=>'form-control','id'=>'serial_crs')) }}
{{ Form::label('students','4. Estudiante:',array('class'=>'col-md-4 control-label')) }}
{{ Form::select('serial_std',array(''=>'-Seleccione-'),'',array('class'=>'form-control','id'=>'serial_std')) }}
{{ HTML::script('js/studentSchoolRecord/index.js') }} @stop()