mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
24 lines
520 B
PHP
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>
|