@if ($event->date)
FECHA
{{ \Carbon\Carbon::parse($event->date)->format('d/m/Y') }}
@endif
@if ($event->time)
HORA
{{ \Carbon\Carbon::parse($event->time)->format('H:i') }}
@endif
@if ($event->location)
LUGAR
{{ $event->location }}
@endif
@if ($event->description)
DESCRIPCIÓN
{{ $event->description }}
@endif
@if ($event->agenda)
@php
$agenda = is_string($event->agenda) ? json_decode($event->agenda, true) : $event->agenda;
@endphp
@if (is_array($agenda))