mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
add landing pages for meetups
This commit is contained in:
22
resources/views/vendor/livewire-tables/components/table/empty.blade.php
vendored
Normal file
22
resources/views/vendor/livewire-tables/components/table/empty.blade.php
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
@aware(['component'])
|
||||
|
||||
@php
|
||||
$attributes = $attributes->merge(['wire:key' => 'empty-message-'.$component->id]);
|
||||
$theme = $component->getTheme();
|
||||
@endphp
|
||||
|
||||
@if ($theme === 'tailwind')
|
||||
<tr {{ $attributes }}>
|
||||
<td colspan="{{ $component->getColspanCount() }}">
|
||||
<div class="flex justify-center items-center space-x-2 dark:bg-gray-800">
|
||||
<span class="font-medium py-8 text-gray-400 text-lg dark:text-white">{{ $component->getEmptyMessage() }}</span>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
@elseif ($theme === 'bootstrap-4' || $theme === 'bootstrap-5')
|
||||
<tr {{ $attributes }}>
|
||||
<td colspan="{{ $component->getColspanCount() }}">
|
||||
{{ $component->getEmptyMessage() }}
|
||||
</td>
|
||||
</tr>
|
||||
@endif
|
||||
Reference in New Issue
Block a user