@can('access', 'record.actions.delete')
@if (isset($event['id_remove_action']))
@endif
@endcan
@if ($event['title'] !== null)
{{ $event['title'] }}
@endif
@if ($event['content'] !== null)
{{ $event['content'] }}
@endif
@if ($event['raw_content'] !== null)
{!! $event['raw_content'] !!}
@endif
@if ($event['files'] !== null && $event['files']->isNotEmpty())
Adjuntos:
@foreach ($event['files'] as $file)
@if (Str::contains($file->mime, 'image/'))
{{ $file->name }}
@elseif ($file->mime === "application/pdf")
{{ $file->name }}
@if(!empty($file->id))
@endif
@if(!empty($file->sipemu_path))
@else
@endif
@else
@endif
@endforeach
@endif