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

16 lines
298 B
PHP

@aware(['component'])
@php
$theme = $component->getTheme();
@endphp
@if ($theme === 'tailwind')
<div class="flex-col">
{{ $slot }}
</div>
@elseif ($theme === 'bootstrap-4' || $theme === 'bootstrap-5')
<div class="d-flex flex-column">
{{ $slot }}
</div>
@endif