2022-08-24 07:32:19 +00:00
|
|
|
@php
|
|
|
|
|
$slot_isHtml = strlen(strip_tags($slot)) < strlen($slot);
|
|
|
|
|
@endphp
|
|
|
|
|
|
2022-08-24 07:54:35 +00:00
|
|
|
@if (strlen($slot) >= 25 && ! $slot_isHtml)
|
2022-08-02 07:32:37 +00:00
|
|
|
<x-tooltip id="page-title" placement="bottom" message="{!! $slot !!}">
|
2022-08-16 12:20:03 +00:00
|
|
|
<div class="truncate" style="width: 22rem;">
|
2022-08-02 07:32:37 +00:00
|
|
|
{!! $slot !!}
|
|
|
|
|
</div>
|
|
|
|
|
</x-tooltip>
|
|
|
|
|
@else
|
|
|
|
|
{!! $slot !!}
|
|
|
|
|
@endif
|