2022-11-14 09:23:45 +03:00

15 lines
325 B
PHP

@php
$slot_isHtml = strlen(strip_tags($slot)) < strlen($slot);
$slot_is_string = strval(strlen($slot));
@endphp
@if ($slot_is_string >= $textSize && ! $slot_isHtml)
<div class="overflow-x-hidden">
<div data-title-truncate class="truncate">
{!! $slot !!}
</div>
</div>
@else
{!! $slot !!}
@endif