Evento
{{ $event->title }}
@if ($signedImageUrl)
@endif
@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))
AGENDA
@foreach ($agenda as $item)
- {{ $item }}
@endforeach
@endif
@endif