getTopLevelAttributes() }}>
@includeWhen(
$this->hasConfigurableAreaFor('before-wrapper'),
$this->getConfigurableAreaFor('before-wrapper'),
$this->getParametersForConfigurableArea('before-wrapper')
)
@if($this->hasActions && !$this->showActionsInToolbar)
@endif
@includeWhen(
$this->hasConfigurableAreaFor('before-tools'),
$this->getConfigurableAreaFor('before-tools'),
$this->getParametersForConfigurableArea('before-tools')
)
@if($this->shouldShowTools)
@if ($this->showSortPillsSection)
@endif
@if($this->showFilterPillsSection)
@endif
@includeWhen(
$this->hasConfigurableAreaFor('before-toolbar'),
$this->getConfigurableAreaFor('before-toolbar'),
$this->getParametersForConfigurableArea('before-toolbar')
)
@if($this->shouldShowToolBar)
@endif
@if (
$this->filtersAreEnabled() &&
$this->filtersVisibilityIsEnabled() &&
$this->hasVisibleFilters() &&
$this->isFilterLayoutSlideDown()
)
@endif
@includeWhen(
$this->hasConfigurableAreaFor('after-toolbar'),
$this->getConfigurableAreaFor('after-toolbar'),
$this->getParametersForConfigurableArea('after-toolbar')
)
@endif
@includeWhen(
$this->hasConfigurableAreaFor('after-tools'),
$this->getConfigurableAreaFor('after-tools'),
$this->getParametersForConfigurableArea('after-tools')
)
@if($this->getCurrentlyReorderingStatus)
@endif
@if($this->showBulkActionsSections)
@endif
@if ($this->showCollapsingColumnSections)
@endif
@tableloop($this->selectedVisibleColumns as $index => $column)
@endtableloop
@if($this->secondaryHeaderIsEnabled() && $this->hasColumnsWithSecondaryHeader())
@endif
@if($this->hasDisplayLoadingPlaceholder())
@endif
@if($this->showBulkActionsSections)
@endif
@if(count($currentRows = $this->getRows) > 0)
@php($getCurrentlyReorderingStatus = $this->getCurrentlyReorderingStatus)
@php($showBulkActionsSections = $this->showBulkActionsSections)
@php($showCollapsingColumnSections = $this->showCollapsingColumnSections)
@php($selectedVisibleColumns = $this->selectedVisibleColumns)
@tableloop ($currentRows as $rowIndex => $row)
@if($getCurrentlyReorderingStatus)
@endif
@if($showBulkActionsSections)
@endif
@if ($showCollapsingColumnSections)
@endif
@tableloop($selectedVisibleColumns as $colIndex => $column)
@if($column->isHtml())
{!! $column->setIndexes($rowIndex, $colIndex)->renderContents($row) !!}
@else
{{ $column->setIndexes($rowIndex, $colIndex)->renderContents($row) }}
@endif
@endtableloop
@if ($showCollapsingColumnSections)
@endif
@endtableloop
@else
@endif
@if ($this->footerIsEnabled() && $this->hasColumnsWithFooter())
@if ($this->useHeaderAsFooterIsEnabled())
@else
@endif
@endif
@includeIf($customView)
@includeWhen(
$this->hasConfigurableAreaFor('after-wrapper'),
$this->getConfigurableAreaFor('after-wrapper'),
$this->getParametersForConfigurableArea('after-wrapper')
)