15 lines
392 B
PHP
Raw Normal View History

2022-08-24 10:32:19 +03:00
@php
$slot_isHtml = strlen(strip_tags($slot)) < strlen($slot);
2022-09-26 16:42:13 +03:00
$slot_is_string = strval(strlen($slot));
2022-08-24 10:32:19 +03:00
@endphp
2022-09-26 16:42:13 +03:00
@if ($slot_is_string >= $textSize && ! $slot_isHtml)
2022-08-02 10:32:37 +03:00
<x-tooltip id="page-title" placement="bottom" message="{!! $slot !!}">
2022-08-16 15:20:03 +03:00
<div class="truncate" style="width: 22rem;">
2022-08-02 10:32:37 +03:00
{!! $slot !!}
</div>
</x-tooltip>
@else
{!! $slot !!}
@endif