@php
if ($hideLength ?? false) {
$class = 'hide-length';
if (!($displaySearch ?? false) && !($toggleColumns ?? false)) {
$class .= ' hide-row';
}
}
@endphp
@if($displaySearch ?? false)
@include('data_table.components.tables.shared.search', [
'placeholder' => $searchPlaceholder ?? null
])
@endif
@if($displayRowsCount ?? true)
一共查找到 0 条记录
@endif
@if(!empty($massDeleteRoute) && ($selectRows ?? false))
@endif
@if(!empty($exportRoute))
@endif
@if(!empty($buttons))
@include('data_table.components.tables.shared.buttons')
@endif