add landing pages for meetups

This commit is contained in:
Benjamin Takats
2023-01-14 20:35:54 +01:00
parent 8120b13bff
commit 2f00e34e10
55 changed files with 3161 additions and 17 deletions

View 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