caffeinated / menus by thekanbo

Laravel Menus
155,696
133
10
Package Data
Maintainer Username: thekanbo
Maintainer Contact: shea.lewis89@gmail.com (Shea Lewis)
Package Create Date: 2015-02-14
Package Last Update: 2023-03-24
Home Page: https://caffeinatedpackages.com
Language: PHP
License: MIT
Last Refreshed: 2024-04-25 15:18:02
Package Statistics
Total Downloads: 155,696
Monthly Downloads: 222
Daily Downloads: 19
Total Stars: 133
Total Watchers: 10
Total Forks: 59
Total Open Issues: 26

Caffeinated Menus

Source License

Announcements

  • Currently in the process of migrating documentation to a central location. It's a bit of a mess right now - my apologies.
  • I pushed a breaking change as a minor release - the offending release is v3.3. To rectify this I will be rolling the removed functionaly back in as a new patch release and will tag the removed functionality as a new major release (v4.0).

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.

Documentation

You will find user friendly and updated documentation in the wiki here: Caffeinated Menus Wiki

Quick Installation

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:

Service Provider

Caffeinated\Menus\MenusServiceProvider::class,

Facade

'Menu' => Caffeinated\Menus\Facades\Menu::class,

And that's it! With your coffee in reach, start building out some awesome menus!