@php
$fullText = trim($entry->{$column['name']});
$modalId = "longTextModal{$entry->id}";
@endphp
@if (strlen($fullText) <= 80)
{{ $fullText }}
@else
{{ str($fullText)->stripTags()->limit(80, '[...]') }}
View
{{-- Modal --}}
{{ $column['modal_label'] ?? 'Reason' }}
{{ $fullText }}
@endif
|