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/65a0bb745210667acb7c793d091839717c19079d.php
<?php $__env->startSection('header'); ?>
    @parent

    <title>Cursos rIL</title>

<?php $__env->stopSection(); ?>


<?php $__env->startSection('pagina'); ?>

    <div class="col-lg-12 vacio"></div>

    <div class="container text-center">
        <h2>Últimos Cursos</h2><br>
        <div class="row">
            <?php foreach($ultimosCursos as $curso): ?>
                <div class="col-sm-4 padd-bottom <?php if(\App\Cursos::terminado($curso) < 0): ?> acabado <?php endif; ?>">
                    <h3><?php echo e($curso->nombre); ?></h3>
                    <?php if(Storage::disk('local')->has('curso-'.$curso->slug.'.jpg')): ?>
                        <p><a href="/cursos/<?php echo e($curso->slug); ?>"><img src="<?php echo e(route('curso.imagen', ['filename' => 'curso-'.$curso->slug.'.jpg'])); ?>" class="img-responsive center-block" /></a></p>
                    <?php endif; ?>
                    <h3><a href="/cursos/<?php echo e($curso->slug); ?>"><?php echo e($curso->resumen); ?></a></h3>
                    <p class="descripcionpeque"><?php echo e($curso->descripcion); ?></p>
                    <p><?php echo e($curso->fechaInicio . ' ' . $curso->horario); ?></p>
                    <div class="links">
                        <div class="link-effect-9" id="link-effect-9">
                            <a href="/cursos/<?php echo e($curso->slug); ?>" style="color: <?php echo e($curso->color); ?>;">Más Información</a>
                        </div>
                    </div>
                </div>
            <?php endforeach; ?>
        </div>
    </div><br>

    <div class="separacion">
        <div class="container text-center">
            <h3>Algo de texto de prueba</h3>
        </div>
    </div>

    <div class="container text-center">
        <h2>Categorías</h2><br>

        <div class="row">
            <?php foreach($categorias as $dts): ?>
                <div class="col-lg-4 col-md-4 col-sm-6">
                    <div class="panel panel-success" style="height: 200px;">
                        <div class="panel-heading"><?php echo e($dts->nombre); ?></div>
                        <div class="panel-body"><?php echo e($dts->descripcion); ?></div>
                        <a href="/categorias/<?php echo e($dts->slug); ?>" class="btn btn-primary">Más Información</a>
                    </div>
                </div>
            <?php endforeach; ?>
        </div>

        <div class="col-lg-12 vacio"></div>

    </div>

<?php $__env->stopSection(); ?>

<?php $__env->startSection('footer'); ?>
    @parent

<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.pagina', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>