This plugin for Filament provides a Navigation resource that lets you build structural navigation menus with a clean drag-and-drop UI.
For Filament version compatibility, see Compatibility.
Start by installing the package via Composer:
composer require van-ons/filament-navigation:^2.0Next, run the migrations:
php artisan migrateFinally, publish the package's assets:
php artisan filament:assetsYou first need to register the plugin with Filament. This can be done inside your PanelProvider, e.g. AdminPanelProvider:
use VanOns\FilamentNavigation\FilamentNavigation;
return $panel
->plugin(FilamentNavigation::make());If you wish to customize the navigation group, sort or icon, you can use the NavigationResource::navigationGroup(),
NavigationResource::navigationSort() and NavigationResource::navigationIcon() methods.
Please see the documentation for detailed information about installation and usage.
Please see Contributing for more information about how you can contribute.
composer testPlease see Changelog for more information about what has changed recently.
Please see Upgrading for more information about how to upgrade.
Please see Security for more information about how we deal with security.
We would like to thank the following contributors for their contributions to this project:
- Ryan Chandler (original author)
- All contributors
The scripts and documentation in this project are released under the MIT License.

