@if($models->isEmpty())
{{ __('No results to display.') }}
@else
@if($checkbox && $checkbox_side == 'left')
@include('laravel-livewire-tables::checkbox-all')
@endif
@foreach($columns as $column)
@if($column->sortable)
{{ $column->heading }}
@if($sort_attribute == $column->attribute)
@else
@endif
@else
{{ $column->heading }}
@endif
|
@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)
@if($column->view)
@include($column->view)
@else
{{ $value }}
@endif
|
@endforeach
@if($checkbox && $checkbox_side == 'right')
@include('laravel-livewire-tables::checkbox-row')
@endif
@endforeach
@endif