File: /home/cursos.ril.es/storage/framework/views/1a1d74fa0ac6551eb3b3f1f983b5c24a808a2c66.php
<a href="/cursos/<?php echo e($curso->slug); ?>" class="list-group-item">
<h4 class="list-group-item-heading"><?php echo e($curso->resumen); ?></h4>
<div class="list-content">
<div>
<img src="<?php echo e($curso->imagen); ?>" class="img img-responsive" alt="<?php echo e($curso->resumen); ?>" />
</div>
<div>
<p>Precio: <strong><?php echo e($curso->precios); ?>€</strong></p>
<p>Fecha y horarios: <strong><?php echo e(Carbon\Carbon::createFromFormat('Y-m-d', $curso->fechaInicio)->format('d-m-Y')); ?> de <?php echo e($curso->horario); ?></strong></p>
<p>Lugar: <strong><?php echo e($curso->lugar); ?></strong></p>
<p>Profesor: <strong><?php echo e($curso->profesor()->first()->nombre); ?> <?php echo e($curso->profesor()->first()->apellidos); ?></strong></p>
</div>
</div>
</a>