@if ($show_search ?? true)
@endif @if ($header_view)
@include($header_view)
@endif
@if ($models->isEmpty())
{{ __('No results to display.') }}
@else
@if ($checkbox && $checkbox_side == 'left') @include('laravel-livewire-tables::checkbox-all') @endif @foreach ($columns as $column) @endforeach @if ($checkbox && $checkbox_side == 'right') @include('laravel-livewire-tables::checkbox-all') @endif @foreach ($models as $model) @if ($checkbox && $checkbox_side == 'left') @include('laravel-livewire-tables::checkbox-row') @endif @foreach ($columns as $column) @endforeach @if ($checkbox && $checkbox_side == 'right') @include('laravel-livewire-tables::checkbox-row') @endif @endforeach
@if ($column->sortable) {{ $column->heading }} @if ($sort_attribute == $column->attribute) @else @endif @else {{ $column->heading }} @endif
@if ($column->view) @include($column->view) @else {{ $value }} @endif
@endif
{{ $models->links() }}
@if ($footer_view)
@include($footer_view)
@endif