11 lines
448 B
PHP
11 lines
448 B
PHP
@props([ 'link' => '', 'active' => false])
|
|
@php
|
|
if (!$active){
|
|
$active = url()->current() === $link;
|
|
}
|
|
@endphp
|
|
@aware(['activeClass' => 'bg-gray-100 text-gray-900'])
|
|
<a href="{{$link}}" {{$attributes->class(["flex space-x-3 items-center pl-3 py-3 rounded-xl hover:bg-gray-100 border border-transparent ease-in-out transition-all duration-300 active:scale-80 hover:border-gray-300", $activeClass => $active])}} >
|
|
{{$slot}}
|
|
</a>
|