Server : Apache System : Linux 145.162.205.92.host.secureserver.net 5.14.0-611.45.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Apr 1 05:56:53 EDT 2026 x86_64 User : tradze ( 1001) PHP Version : 8.1.34 Disable Function : NONE Directory : /home/tradze/public_html/test.tradze.com/Backup25feb2025/vendor/caffeinated/menus/ |
Caffeinated Menus ================= [](http://laravel.com) [](http://laravel.com) [](https://github.com/caffeinated/menus) [](https://tldrlegal.com/license/mit-license) Easily create dynamic menus from within your Laravel 5 application. Caffeinated Menus is originally based off of Lavary's [Laravel Menu](https://github.com/lavary/laravel-menu) package with support for the Caffeinated Shinobi package. For a more robust and complete package, please go check out [Laravel Menu](https://github.com/lavary/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. Documentation ------------- You will find user friendly and updated documentation in the wiki here: [Caffeinated Menus Wiki](https://github.com/caffeinated/menus/wiki) Quick Installation ------------------ Begin by installing the package through Composer. ``` composer require caffeinated/menus=~2.0 ``` Once this operation is complete, simply add the service provider class and facade alias to your project's `config/app.php` file: #### Service Provider ```php Caffeinated\Menus\MenusServiceProvider::class, ``` #### Facade ```php 'Menu' => Caffeinated\Menus\Facades\Menu::class, ``` And that's it! With your coffee in reach, start building out some awesome menus!