mudassar1/laravel-menus-limitless is a Laravel package for laravel menu management.
It currently has 0 GitHub stars and 224 downloads on Packagist (latest version 1.0.8).
Install it with composer require mudassar1/laravel-menus-limitless.
Discover more Laravel packages by mudassar1
or browse all Laravel packages to compare alternatives.
Last updated
| Laravel | laravel-menus | |-------------|-------------------| | 9.0 & lower | ^1.0.0 | | 10.0 | ^1.0.0 |
mudassar1/laravel-menus-limitless is a laravel package which created to manage menus. It has a feature called presenters which enables easy styling and custom structure of menu rendering.
Add Service Provider
Next add the following service provider in config/app.php.
'providers' => [ Mudassar\Menus\MenusServiceProvider::class, ],
Next, add the following aliases to aliases array in the same file.
'aliases' => [ 'Menu' => Mudassar\Menus\Facades\Menu::class, ],
Next publish the package's configuration file by running :
php artisan vendor:publish --provider="Nwidart\Menus\MenusServiceProvider"
With one big added bonus that the original package didn't have: tests.
This is a fork & modified version of nwidart/laravel-menus
You'll find installation instructions and full documentation on https://nwidart.com/laravel-menus/.
The MIT License (MIT). Please see License File for more information.