20 lines
		
	
	
		
			848 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			848 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| @props(['id', 'name', 'href', 'active'])
 | |
| 
 | |
| <li class="relative px-8 text-sm text-black text-center pb-2 cursor-pointer transition-all border-b tabs-link"
 | |
|     @class([
 | |
|         'text-purple border-purple transition-al after:absolute after:w-full after:h-0.5 after:left-0 after:right-0 after:bottom-0 after:bg-purple after:rounded-tl-md after:rounded-tr-md' => !empty($active),
 | |
|     ])
 | |
|     id="tab-{{ $id }}"
 | |
|     data-id="tab-{{ $id }}"
 | |
|     data-tabs="{{ $id }}"
 | |
|     x-bind:class="active != '{{ $id }}' ? '' : 'active-tabs text-purple border-purple transition-all after:absolute after:w-full after:h-0.5 after:left-0 after:right-0 after:bottom-0 after:bg-purple after:rounded-tl-md after:rounded-tr-md'"
 | |
| >
 | |
|     @if ($slot->isNotEmpty())
 | |
|         {!! $slot !!}
 | |
|     @else
 | |
|         <a href="{{ $href }}">
 | |
|             {{ $name }}
 | |
|         </a>
 | |
|     @endif
 | |
| </li>
 |