@php
use App\Enums\Role;
$navLink = function (string $href, string $label, bool $active, string $icon) {
$base = 'group flex items-center gap-3 rounded-xl px-3 py-2 text-sm font-medium transition';
$activeClasses = $active
? 'bg-white/10 text-white ring-1 ring-white/10'
: 'text-zinc-300 hover:bg-white/5 hover:text-white';
return <<
{$icon}
{$label}
HTML;
};
@endphp
{{ config('app.name') }}
Admin Panel