File: //home/cursos.ril.es/storage/framework/views/7d0b43e32021f60a466a18b8367d07903a77ebb8.php
<?php $__env->startSection('header'); ?>
@parent
<title>Cursos del Alumno</title>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('pagina'); ?>
<div class="separacion-top"></div>
<div class="col-sm-8 col-sm-offset-2">
<div class="page-header">
<h1><span class="glyphicon glyphicon-th-list"></span> Cursos del Alumno: <?php echo e($alumno->name . ' ' . $alumno->apellidos); ?></h1>
<h3>Cursos en los que está inscrito:</h3>
</div>
<div>
<table class="table table-striped">
<thead>
<tr>
<th>Resumen</th>
<th>Fecha Inicio</th>
<th>Horario</th>
<th>Lugar</th>
<th>Precio</th>
<th>Quitar</th>
</tr>
</thead>
<tbody>
<?php foreach($cursos as $curso): ?>
<tr>
<td><?php echo e($curso->resumen); ?></td>
<td><?php echo e($curso->fechaInicio); ?></td>
<td><?php echo e($curso->horario); ?></td>
<td><?php echo e($curso->lugar); ?></td>
<td><?php echo e($curso->precios); ?></td>
<td>
<form method="post" action="/admin/cursosalumnos/<?php echo e($alumno->id . '|' . $curso->id); ?>">
<input type="hidden" name="_token" value="<?php echo csrf_token(); ?>">
<button type="submit" class="btn btn-default"><span class="fi-x"></span></button>
</form>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('footer'); ?>
@parent
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.menu', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>