{{-- table-view.table-view Base layout to render all the UI componentes related to the table 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 UI components used: - table-view.filters - components.alert - components.table - components.paginator --}} {{-- Search input and filters --}}
@include('laravel-views::components.toolbar.toolbar')
@if (count($items)) {{-- Content table --}}
@include('laravel-views::components.table')
@else {{-- Empty data message --}}

{{ __('There are no items in this table') }}

@endif {{-- Paginator, loading indicator and totals --}}
{{ $items->links() }}