@extends('layout.sidebar')
@section('content')
{{"FICHA MÉDICA"}}
{{ Form::label('serial_scy',' Año Lectivo:') }} {{$currentSchoolYear->name_scy}}
@if($success)
Se ha actualizado los datos correctamente.
@endif
{{ Form::hidden('studentphotos', action('MedicalFileController@getStudensauthorizetakespictures', array()), array('id'=>'studentphotos')) }}
{{ Form::hidden('redirect', $document_root.'modules/student/fUpdateMedicalProfile', array('id'=>'redirect')) }}
CÓDIGO
|
ESTUDIANTE
|
NIVEL
|
|
@foreach($students as $student)
{{$student->serial_std}} |
{{$student->last_name_std}} {{$student->first_name_std}} |
{{$student->name_set}} {{$student->name_lvl}} |
@if(!empty($student->serial_mdf))
|
@else
|
@endif
@endforeach
{{ HTML::style('css/common/feature-table.css') }}
{{ HTML::script('js/common/feature-table.js') }}
{{ HTML::script('js/medicalFile/index.js') }}
@stop