13 lines
264 B
PHP
13 lines
264 B
PHP
@php
|
|
if (!isset($active)) {
|
|
$active = false;
|
|
}
|
|
@endphp
|
|
|
|
<li>
|
|
<a href="{{ $route }}" wire:navigate class="{{$active ? 'active' : ''}}">
|
|
<x-dynamic-component :component="'icons.'.$icon" class="w-5 h-5"/>
|
|
{{$title}}
|
|
</a>
|
|
</li>
|