23 lines
		
	
	
		
			726 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			726 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <div @class([
 | |
|     '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,
 | |
| ])>
 | |
|     <div class="flex items-center">
 | |
| 
 | |
|         {{ $logo }}
 | |
|         <div class="flex flex-col pl-2 ">
 | |
|             <div class="dark:text-white text-md">
 | |
|                 {{ $title }}
 | |
|             </div>
 | |
|             @if ($upgrade)
 | |
|                 <div>{{ $upgrade }}</div>
 | |
|             @else
 | |
|                 <div class="text-xs font-bold dark:text-neutral-500 group-hover:dark:text-neutral-300">
 | |
|                     {{ $description }}
 | |
|                 </div>
 | |
|             @endif
 | |
|         </div>
 | |
|     </div>
 | |
| </div>
 | 
