Server : LiteSpeed System : Linux server335.web-hosting.com 4.18.0-553.62.1.lve.el8.x86_64 #1 SMP Mon Jul 21 17:50:35 UTC 2025 x86_64 User : cardxfeb ( 2452) PHP Version : 8.1.34 Disable Function : NONE Directory : /home/cardxfeb/www/resources/views/vendor/livewire-tables/includes/ |
@if ($component->offlineIndicatorIsEnabled())
@if ($component->isTailwind())
<div wire:offline.class.remove="hidden" class="hidden">
<div class="rounded-md bg-red-100 p-4 mb-4 dark:border-red-800 dark:bg-red-500">
<div class="flex">
<div class="flex-shrink-0">
<x-heroicon-s-x-circle class="h-5 w-5 text-red-400 dark:text-white" />
</div>
<div class="ml-3">
<h3 class="text-sm font-medium text-red-800 dark:text-white">
@lang('You are not connected to the internet.')
</h3>
</div>
</div>
</div>
</div>
@elseif ($component->isBootstrap())
<div wire:offline.class.remove="d-none" class="d-none">
<div class="alert alert-danger d-flex align-items-center">
<x-heroicon-s-x-circle style="width:1.3em;height:1.3em;" />
<span class="d-inline-block ml-2">@lang('You are not connected to the internet.')</span>
</div>
</div>
@endif
@endif