jigs1212/menus is a Laravel package for laravel 5 menus.
It currently has 3 GitHub stars and 447 downloads on Packagist (latest version 3.0.9).
Install it with composer require jigs1212/menus.
Discover more Laravel packages by jigs1212
or browse all Laravel packages to compare alternatives.
Last updated
This is originally develeoped at Caffeinated Menus. Modified to acheive my needs.
Begin by installing the package through Composer.
composer require jigs1212/menus
Once this operation is complete, simply add the service provider class and facade alias to your project's config/app.php file:
Jigs1212\Menus\MenusServiceProvider::class,
'Menu' => Jigs1212\Menus\Facades\Menu::class,
And that's it! With your coffee in reach, start building out some awesome menus!
Easily create dynamic menus from within your Laravel 5 application.
Caffeinated Menus is originally based off of Lavary's Laravel Menu package with support for the Caffeinated Shinobi package. For a more robust and complete package, please go check out Laravel Menu!
The package follows the FIG standards PSR-1, PSR-2, and PSR-4 to ensure a high level of interoperability between shared PHP code. At the moment the package is not unit tested, but is planned to be covered later down the road.
You will find user friendly and updated documentation in the wiki here: Caffeinated Menus Wiki
Begin by installing the package through Composer.
composer require caffeinated/menus
Once this operation is complete, simply add the service provider class and facade alias to your project's config/app.php file:
Caffeinated\Menus\MenusServiceProvider::class,
'Menu' => Caffeinated\Menus\Facades\Menu::class,
And that's it! With your coffee in reach, start building out some awesome menus!