{{-- ===================================================== Etebarit - by Gisoo Web Solutions ------------------------------------------------------ Gisoo.net ------------------------------------------------------ Copyright (c) 2026 Gisoo Web Solutions ===================================================== This code is protected by copyright ===================================================== File: nav-link.blade.php ------------------------------------------------------ Use: One sidebar navigation item of the panel shell. Pass the icon as the `icon` slot, an `active` flag, and an optional numeric `badge`. ===================================================== --}} @props(['href' => '#', 'active' => false, 'badge' => null]) $active, 'border-transparent text-ink-soft hover:bg-[#f2f0fa] hover:text-primary-600' => ! $active, ]) @if ($active) aria-current="page" @endif > {{ $icon ?? '' }} {{ $slot }} @if ($badge !== null) @fa($badge) @endif