HEX
Server: Apache/2.4.61 (Ubuntu)
System: Linux hosting106 7.0.12-1-pve #1 SMP PREEMPT_DYNAMIC PMX 7.0.12-1 (2026-06-09T21:07Z) x86_64
User: clinicadentalargarate.com (1193)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /home/cursos.ril.es/storage/framework/views/5a7f5abdc0d58b208e214659f67e26f4c79d711f.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(); ?>