@extends('layouts.master') @section('css') {!! Html::style('css/jquery_ui.css')!!} {!! Html::style('css/datatable/dataTables.bootstrap.css')!!} @stop @section('content') @if(Session::has('message_success'))
{!! Session::get('message_success') !!}
@endif @if(Session::has('message_error'))
{!! Session::get('message_error') !!}
@endif
{!!Form::select('convenio_id',$convenios,NULL,array('class' => 'form-control','id' => 'convenio_id'))!!}
{!!Form::select('estados',$estados,NULL,array('class' => 'form-control','id' => 'estados'))!!}
@if(count($solicitudes)>0) @foreach($solicitudes as $value) @endforeach
ID Apellidos y Nombres Programa Localidad Turno Modalidad Fecha de Solicitud Detalles
{!! $value->estudiante_id !!} {!! $value->apellidos.', '.$value->nombres !!} {!! $value->localidad->descripcion !!} {!! $value->turno->descripcion !!} {!! $value->modalidad->descripcion !!} {!! date_format(date_create($value->created_at),'d/m/Y h:i:s') !!}
@else
No hay solicitudes realizadas para éste período
@endif
@stop @section('postscript') {!! Html::script('js/jquery_ui.js') !!} {!! Html::script('js/datatable/jquery.dataTables.js') !!} {!! Html::script('js/datatable/dataTables.bootstrap.js') !!} @stop