@php $currentSortField = request('sortField'); $currentSortDirection = request('sortDirection'); $moduleName = $title; @endphp
| {{ $col['label'] }} @if($col['sortable']) @php $iconClass = 'fas fa-sort'; if($currentSortField === $col['field'] && $currentSortDirection === 'asc') { $iconClass = 'fas fa-sort-up'; } elseif($currentSortField === $col['field'] && $currentSortDirection === 'desc') { $iconClass = 'fas fa-sort-down'; } @endphp @endif | @endforeach
|---|