{{-- grid-view.grid-view Base layout to render all the UI componentes related to the grid view, this is the main file for this view, the rest of the files are included from here You can customize all the html and css classes but YOU MUST KEEP THE BLADE AND LIVEWIERE DIRECTIVES --}} @php // Mapped this tailwindcss utilities so they can be prged $cols = [ 1 => 'xl:grid-cols-1', 2 => 'xl:grid-cols-2', 3 => 'xl:grid-cols-3', 4 => 'xl:grid-cols-4', 5 => 'xl:grid-cols-5', 6 => 'xl:grid-cols-6', 7 => 'xl:grid-cols-7', 8 => 'xl:grid-cols-8', 9 => 'xl:grid-cols-9', 10 => 'xl:grid-cols-10', 11 => 'xl:grid-cols-11', 12 => 'xl:grid-cols-12', ] @endphp {{-- Search input and filters --}}
@include('laravel-views::components.toolbar.toolbar')
@foreach ($items as $item)
@if ($this->hasBulkActions)
@endif
@endforeach
{{-- Paginator, loading indicator and totals --}}
{{ $items->links() }}