{{-- list-view.filters.blade Renders the search input and the filters dropdown You can customize all the html and css classes but YOU MUST KEEP THE BLADE AND LIVEWIERE DIRECTIVES UI components used: - form/input-group - dropdown --}}
{{-- Search input --}}
@include('laravel-views::components.toolbar.search')
{{-- Actions on the left --}}
{{-- Bulk actions --}}
@include('laravel-views::components.toolbar.bulk-actions')
{{-- Sorting --}} @if (isset($sortableBy) && $sortableBy->isNotEmpty())
@include('laravel-views::components.toolbar.sorting')
@endif {{-- Filters --}}
@include('laravel-views::components.toolbar.filters')