@aware(['component'])
@php
$attributes = $attributes->merge(['wire:key' => 'empty-message-'.$component->id]);
$theme = $component->getTheme();
@endphp
@if ($theme === 'tailwind')
{{ $component->getEmptyMessage() }}
|
@elseif ($theme === 'bootstrap-4' || $theme === 'bootstrap-5')
{{-- {{ $component->getEmptyMessage() }}--}}
{{ __('messages.no_data_available') }}
|
@endif