{{ $event->occurred_at?->format('d/m/Y H:i') ?? $event->created_at->format('d/m/Y H:i') }}
— {{ ucfirst(str_replace('_', ' ', $event->event_type)) }}
@if($event->createdByUser)
— Registrado por {{ $event->createdByUser->name }}
@endif
@if($event->title)
{{ $event->title }}
@endif
@if($event->description)
{!! nl2br(e($event->description)) !!}
@endif
@php $docs = $event->document_paths ?? []; @endphp
@if(!empty($docs))
Adjuntos:
@foreach($docs as $path)
{{ basename($path) }}{{ !$loop->last ? ', ' : '' }}
@endforeach
@endif
No hay eventos registrados para esta importación.