@extends('layouts.master')
@section('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
Materia: {{ $materia }}
Docente: {{ $docente }}
| ID |
Estudiante |
Ver Respuestas |
Eliminar |
@foreach($submissions as $s)
| {{ $s->estudiante_id }} |
{{ $s->nombres }} {{ $s->apellidos }} |
Ver
|
|
@endforeach
@endsection
@section('postscript')
{!! Html::script('js/datatable/jquery.dataTables.js') !!}
{!! Html::script('js/datatable/dataTables.bootstrap.js') !!}
@stop