js function refactoring

This commit is contained in:
Burak Civan
2022-10-18 16:50:27 +03:00
parent 967ea50877
commit 3ab2129a35
4 changed files with 21 additions and 11 deletions

View File

@ -1,4 +1,4 @@
<td class="{{ $class }}" {{ $attributes }}>
<td data-truncate-table class="{{ $class }}" {{ $attributes }}>
@if (!empty($first))
@php
$first_attributes = $first->attributes;
@ -32,7 +32,7 @@
</div>
</div>
@endif
<div>
<span data-truncate>
{{ $slot }}

View File

@ -8,7 +8,11 @@
}
@endphp
<div {{ $first_attributes }}>
{!! $first !!}
<div>
<span data-truncate>
{!! $first !!}
</span>
</div>
</div>
@endif
@ -21,9 +25,17 @@
}
@endphp
<div {{ $second_attributes }}>
{!! $second !!}
<div>
<span data-truncate>
{!! $second !!}
</span>
</div>
</div>
@endif
{{ $slot }}
<div>
<span data-truncate>
{{ $slot }}
</span>
</div>
</th>