<?php $_shouldextend[1]=1; ?>
<?php $this->startSection('title', $title ?? 'Inicio'); ?>
<?php $this->startSection('content'); ?>
 <h2>Bienvenido, <?php echo \htmlentities($name ?? 'Alumno'??'', ENT_QUOTES, 'UTF-8', false); ?> 👋</h2>
 <p>Esta vista usa <strong>Blade</strong> con un <em>layout</em> base.</p>
<?php $this->stopSection(); ?>
<?php if (isset($_shouldextend[1])) { echo $this->runChild('layouts.base'); } ?>