Republic of the Philippines
VISAYAS STATE UNIVERSITY
SPECIFICATION
@php usort($specifications, function ($a, $b) { return $a['item_num'] <=> $b['item_num']; }); @endphp @foreach($specifications as $spec) @php $specText = $spec['specs'] ?? ''; // ✅ Avoid undefined index $hasLargeSpec = strlen(strip_tags((string)$specText)) > 2000; @endphp
{{ $spec['item_num'] }}.
{{ $spec['item_name'] }}
{!! !empty($specText) ? $specText : '
No specification provided.
' !!}
@endforeach