Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Menu Laravel Package

spatie/menu

Fluent, extensible menu builder for Laravel. Compose navigation with a clean API, render as HTML, and customize output via presenters and macros. Supports active state handling, links, submenus, and easy integration with Blade and your app’s routing.

View on GitHub
Deep Wiki
Context7

title: Conditional Items Based on Permissions weight: 3

v1.1+

The add method and all convenience methods (link, html, action,...) have an equivalent method with an IfCan suffix. When used, the item will only be added if the currently logged in user has a certain permission.

Menu::new()
    ->link('/', 'Home')
    ->linkIfCan('view-posts', '/posts', 'Posts');
<!-- User isn't logged in or can't view posts -->
<ul>
    <li><a href="/">Home</a></li>
</ul>
<!-- User is logged in and can view posts -->
<ul>
    <li><a href="/">Home</a></li>
    <li><a href="/posts">Posts</a></li>
</ul>

If your permission check requires parameters, you can provide an array for the permission. The permission's name should be the first element, and parameters should fill up the rest.

Menu::new()
    ->link('PostController@show', 'View post')
    ->linkIfCan(['edit-post', $post], 'PostController@edit', 'Edit post');
<!-- User isn't logged in or can't edit the post -->
<ul>
    <li><a href="/posts/1">View post</a></li>
</ul>
<!-- User is logged in and can edit the post -->
<ul>
    <li><a href="/posts/1">View post</a></li>
    <li><a href="/posts/1/edit">Edit post</a></li>
</ul>
Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
terminal42/code-quality-tools
codifyo/ts-generator-bundle
andydefer/laravel-cluster
testo/fiber
mintobit/jobqueue
a4sex/maintenance-bundle
a4sex/entity-date-update
a4sex/client-identifier
a4sex/base-utilites
a4sex/key-value-storage
a4sex/micro-status
chilldev/dependency-injection-extra
datinglibre/datinglibre-app-api
biberltd/corebundle
bricre/symfony-bundle-test
biberltd/logbundle
dominium/http-adapter-bundle
dominium/google-analytics
a4sex/auto-clean-entity
christhompsontldr/laravel-inky