lampuotomatis/resources/views/vendor/livewire-tables/components/wrapper.blade.php

19 lines
685 B
PHP

@props(['component', 'tableName', 'primaryKey', 'isTailwind', 'isBootstrap','isBootstrap4', 'isBootstrap5'])
<div wire:key="{{ $tableName }}-wrapper" >
<div {{ $attributes->merge($this->getComponentWrapperAttributes()) }}
@if ($this->hasRefresh()) wire:poll{{ $this->getRefreshOptions() }} @endif
@if ($this->isFilterLayoutSlideDown()) wire:ignore.self @endif>
<div>
@if ($this->debugIsEnabled())
@include('livewire-tables::includes.debug')
@endif
@if ($this->offlineIndicatorIsEnabled())
@include('livewire-tables::includes.offline')
@endif
{{ $slot }}
</div>
</div>
</div>