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

    <meta name="csrf-token" content="<?php echo e(csrf_token()); ?>">
    <title>Datos personales</title>

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

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

    <div class="padd-long"></div>

    <div class="col-xs-12 col-sm-offset-1 col-sm-10 col-md-offset-2 col-md-8">
        <section>
            <h2>Tus datos</h2>
            <div class="list-group">
                <span class="list-group-item">
                    <strong class="list-group-item-heading">Nombre</strong>
                    <p class="list-group-item-text"><?php echo e(Auth::user()->name); ?></p>
                </span>
                <span class="list-group-item">
                    <strong class="list-group-item-heading">Apellidos</strong>
                    <p class="list-group-item-text"><?php echo e(Auth::user()->apellidos); ?></p>
                </span>
                <span class="list-group-item">
                    <strong class="list-group-item-heading">Email</strong>
                    <p class="list-group-item-text"><?php echo e(Auth::user()->email); ?></p>
                </span>
                <span class="list-group-item">
                    <strong class="list-group-item-heading">Teléfono</strong>
                    <p class="list-group-item-text"><?php echo e(Auth::user()->telefono); ?></p>
                </span>
                <span class="list-group-item">
                    <strong class="list-group-item-heading">Cámara</strong>
                    <p class="list-group-item-text"><?php echo e(Auth::user()->camara); ?></p>
                </span>
            </div>
            <div class="submenu">
                <a class="btn btn-default" href="/mi-cuenta/<?php echo e(Auth::user()->id); ?>">Editar tus datos</a>
            </div>
        </section>

        <section>
            <h2>Tus cursos</h2>
            <div class="list-group smaller">
            <?php if(! Auth::user()->cursos()->count()): ?>
                <div class="list-group-item">
                    <h5>No tienes cursos</h5>
                </div>
            <?php else: ?>
                <?php foreach(Auth::user()->cursos()->get() as $curso): ?>
                    <?php echo $__env->make('layouts.curso.list', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
                <?php endforeach; ?>
            <?php endif; ?>
            </div>
        </section>

        <section>
            <h2>Cursos en lista de espera</h2>
            <div class="list-group smaller">
                <?php if(! Auth::user()->enEspera()->count()): ?>
                    <div class="list-group-item">
                        <h5>No tienes cursos en lista de espera</h5>
                    </div>
                <?php else: ?>
                        <?php foreach(Auth::user()->enEspera()->get() as $curso): ?>
                            <?php echo $__env->make('layouts.curso.list', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
                        <?php endforeach; ?>
                <?php endif; ?>
            </div>
        </section>

        <section>
            <h2>Cursos que te interesan</h2>
            <div class="list-group smaller">
                <?php if(! Auth::user()->intereses()->count()): ?>
                    <div class="list-group-item">
                        <h5>No tienes cursos que te interesen</h5>
                    </div>
                <?php else: ?>
                    <?php foreach(Auth::user()->intereses()->get() as $curso): ?>
                        <?php echo $__env->make('layouts.curso.list', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
                    <?php endforeach; ?>
                <?php endif; ?>
            </div>
        </section>

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