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/resources/views/admin/listadocursos.blade.php
@extends('layouts.menu')

@section('header')
    @parent

    <title>Cursos del Alumno</title>


@stop

@section('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: {{ $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>

                @foreach ($cursos as $curso)
                    <tr>
                        <td>{{ $curso->resumen }}</td>
                        <td>{{ $curso->fechaInicio }}</td>
                        <td>{{ $curso->horario }}</td>
                        <td>{{ $curso->lugar }}</td>
                        <td>{{ $curso->precios }}</td>
                        <td>
                            <form method="post" action="/admin/cursosalumnos/{{ $alumno->id . '|' . $curso->id }}">
                                <input type="hidden" name="_token" value="{!! csrf_token() !!}">
                                <button type="submit" class="btn btn-default"><span class="fi-x"></span></button>
                            </form>
                        </td>
                    </tr>
                    @endforeach
                </tbody>
            </table>
        </div>


    </div>

@stop

@section('footer')
    @parent

@stop