@include("datagrid::head")
@forelse($items as $item)
@foreach($cols as $col)
@if(!$col->isVisible())
@continue
@endif
| buildAttributes() !!}>
{{$col->applyRoute($item)}}
@if($col->url())
@endif
{!! $col->field($item) !!}
@if($col->url())
@endif
|
@endforeach
@foreach($actions as $action)
{!! $action->render($item) !!}
|
@endforeach
@empty
@if($empty_message)
| {{$empty_message}} |
@endif
@endforelse
@include("datagrid::footer")