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/columns/ |
@if ($component->isTailwind())
@if ($status)
@if ($type === 'icons')
@if ($successValue === true)
<x-heroicon-o-check-circle class="inline-block h-5 w-5 text-green-500" />
@else
<x-heroicon-o-check-circle class="inline-block h-5 w-5 text-red-500" />
@endif
@elseif ($type === 'yes-no')
@if ($successValue === true)
<span>Yes</span>
@else
<span>No</span>
@endif
@endif
@else
@if ($type === 'icons')
@if ($successValue === false)
<x-heroicon-o-x-circle class="inline-block h-5 w-5 text-green-500" />
@else
<x-heroicon-o-x-circle class="inline-block h-5 w-5 text-red-500" />
@endif
@elseif ($type === 'yes-no')
@if ($successValue === false)
<span>Yes</span>
@else
<span>No</span>
@endif
@endif
@endif
@elseif ($component->isBootstrap())
@if ($status)
@if ($type === 'icons')
@if ($successValue === true)
<x-heroicon-o-check-circle style="width:1.2em;height:1.2em;" class="d-inline-block text-success" />
@else
<x-heroicon-o-check-circle style="width:1.2em;height:1.2em;" class="d-inline-block text-danger" />
@endif
@elseif ($type === 'yes-no')
@if ($successValue === true)
<span>Yes</span>
@else
<span>No</span>
@endif
@endif
@else
@if ($type === 'icons')
@if ($successValue === false)
<x-heroicon-o-x-circle style="width:1.2em;height:1.2em;" class="d-inline-block text-success" />
@else
<x-heroicon-o-x-circle style="width:1.2em;height:1.2em;" class="d-inline-block text-danger" />
@endif
@elseif ($type === 'yes-no')
@if ($successValue === false)
<span>Yes</span>
@else
<span>No</span>
@endif
@endif
@endif
@endif