$compact,
'table-striped' => $striped,
'table-bordered' => $bordered,
'table-hover' => $hoverable,
])>
@foreach($columns as $column)
{!! $column->buildTh() !!}
@endforeach
@foreach($rows as $source)
@foreach($columns as $column)
{!! $column->buildTd($source) !!}
@endforeach
@endforeach
@if($total->isNotEmpty())
@foreach($total as $column)
{!! $column->buildTd($repository) !!}
@endforeach
@endif
@if($rows->isEmpty())
@isset($iconNotFound)
@endisset
{!! $textNotFound !!}
{!! $subNotFound !!}
@else
@include('platform::layouts.pagination',[
'paginator' => $rows,
'columns' => $columns,
'onEachSide' => $onEachSide,
])
@endif