You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
441 B
18 lines
441 B
@props([
|
|
'route' => null,
|
|
'icon' => '',
|
|
'text' => '',
|
|
'permission' => null,
|
|
])
|
|
|
|
@if ((is_string($permission) && auth()->user()->hasPermissionTo($permission)))
|
|
<li class="">
|
|
<x-link
|
|
:href="$route"
|
|
:label="$text"
|
|
:icon="$icon"
|
|
:icon-config="['class' => 'nav-icon']"
|
|
@class(['nav-link', 'active' => url()->current() == $route])
|
|
/>
|
|
</li>
|
|
@endif
|
|
|