2024-02-22 10:53:25 +00:00
|
|
|
<div @class([
|
2024-03-27 13:51:58 +00:00
|
|
|
'transition-all duration-150 box-without-bg dark:bg-coolgray-100 bg-white group',
|
|
|
|
|
'hover:border-l-coollabs cursor-pointer' => !$upgrade,
|
|
|
|
|
'hover:border-l-red-500 cursor-not-allowed' => $upgrade,
|
2024-10-05 18:55:23 +00:00
|
|
|
])>
|
2024-02-20 14:07:12 +00:00
|
|
|
<div class="flex items-center">
|
|
|
|
|
{{ $logo }}
|
|
|
|
|
<div class="flex flex-col pl-2 ">
|
2024-03-22 11:47:19 +00:00
|
|
|
<div class="dark:text-white text-md">
|
2024-02-20 14:07:12 +00:00
|
|
|
{{ $title }}
|
|
|
|
|
</div>
|
2024-03-25 09:41:44 +00:00
|
|
|
@if ($upgrade)
|
2024-03-21 11:44:32 +00:00
|
|
|
<div>{{ $upgrade }}</div>
|
2024-02-22 10:53:25 +00:00
|
|
|
@else
|
2025-05-14 10:43:23 +00:00
|
|
|
<div class="text-xs font-bold dark:text-neutral-500 dark:group-hover:text-neutral-300">
|
2024-02-22 10:53:25 +00:00
|
|
|
{{ $description }}
|
|
|
|
|
</div>
|
|
|
|
|
@endif
|
2024-02-20 14:07:12 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2024-10-07 09:19:14 +00:00
|
|
|
@isset($documentation)
|
|
|
|
|
<div class="flex-1"></div>
|
|
|
|
|
{{ $documentation }}
|
|
|
|
|
@endisset
|
2024-02-20 14:07:12 +00:00
|
|
|
</div>
|