@props(['columns','data','filters','total','search','actions','bulkactions'])
@include('components.table.table-header', ['columns' => $columns])
@forelse($data as $row)
@foreach($columns as $column)
@include('components.table.table-body', ['column' => $column, 'row' => $row])
@endforeach
@empty
@endforelse