Files
einundzwanzig-portal/resources/views/vendor/livewire-tables/components/wrapper.blade.php
2023-01-14 20:35:54 +01:00

24 lines
520 B
PHP

@props(['component'])
@php
$refresh = $this->getRefreshStatus();
$theme = $component->getTheme();
@endphp
<div
{{ $attributes->merge($this->getComponentWrapperAttributes()) }}
@if ($component->hasRefresh())
wire:poll{{ $component->getRefreshOptions() }}
@endif
@if ($component->isFilterLayoutSlideDown())
x-data="{ filtersOpen: false }"
@endif
>
@include('livewire-tables::includes.debug')
@include('livewire-tables::includes.offline')
{{ $slot }}
</div>