Level 1
I have the same problem. Maybe you got a solution?
What is the proper way to add dropdown links to the navigation beside "Dashboard"?
I know it is in the /resources/views/navigation-dropdown.blade.php.
Here is my attempt
<div class="hidden space-x-8 sm:-my-px sm:ml-10 sm:flex">
<x-jet-nav-link href="{{ route('dashboard') }}" :active="request()->routeIs('dashboard')">
{{ __('Dashboard') }}
</x-jet-nav-link>
</div>
<div class="hidden space-x-8 sm:-my-px sm:ml-10 sm:flex">
<x-jet-dropdown align="right" width="48">
<x-slot name="trigger">
<button class="flex items-center text-sm font-medium text-gray-500 hover:text-gray-700 hover:border-gray-300 focus:outline-none focus:text-gray-700 focus:border-gray-300 transition duration-150 ease-in-out">
<div>Admin</div>
<div class="ml-1">
<svg class="fill-current h-4 w-4" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
<path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd" />
</svg>
</div>
</button>
</x-slot>
<x-slot name="content">
<!-- User Management -->
<div class="block px-4 py-2 text-xs text-gray-400">
{{ __('Users') }}
</div>
<x-jet-dropdown-link href="{{ route('admin.users.index') }}">
{{ __('All Users') }}
</x-jet-dropdown-link>
</x-slot>
</x-jet-dropdown>
</div>
This is the result


Please or to participate in this conversation.