{{-- list-view.sorting.blade Renders the dropdown for the sorting select To customize it you should shange the UI component used, YOU SHOULD NOT CUSTOMIZE ANYHING HERE UI components used: - form/select --}}
{{-- Sorting dropdown --}} {{ __('Sort By') }}@if ($sortableByName = $sortableBy->flip()->get($sortBy)): {{-- --}} {{ $sortableByName }} @endif {{-- Each sortable item --}} @foreach ($sortableBy as $title => $column) @if ($sortBy === $column) @else @endif {{ $title }} @endforeach