{{-- Laravel Mix - CSS File --}}
@php function truncateText($text, $maxLength = 80) { if (strlen($text) <= $maxLength) { return $text; } $truncated = substr($text, 0, $maxLength); $lastSpace = strrpos($truncated, ' '); return $lastSpace !== false ? substr($truncated, 0, $lastSpace) : $truncated; } @endphp

{{ truncateText($data['product_name']) }}

{{ $data['event_qty_available'] }}
pcs

{{-- --}} {{-- Laravel Mix - JS File --}} {{-- --}}