{{-- Use an alert card similar to template notifications to present the content nicely --}}
@php
$details = trim($occurrence->details ?? '');
$isLong = strlen(strip_tags($details)) > 400;
@endphp
@if($isLong)
{!! nl2br(e(Str::limit($details, 400))) !!}
{!! nl2br(e($details)) !!}
Mostrar mais
@else
{!! nl2br(e($details)) !!}
@endif