filipac / menus by filipac
forked from caffeinated/menus

Laravel 5 Menus
15
0
1
Package Data
Maintainer Username: filipac
Maintainer Contact: filip@pacurar.net (Filip Pacurar)
Package Create Date: 2015-04-30
Package Last Update: 2015-04-30
Home Page: http://caffeinated.ninja
Language: PHP
License: MIT
Last Refreshed: 2024-04-22 03:08:04
Package Statistics
Total Downloads: 15
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 1
Total Forks: 0
Total Open Issues: 0

Filipac Menus

Laravel License

Based on Caffeinated/menus

Easily create dynamic menus from within your Laravel 5 application.

Filipac Menus is originally based off of Caffeinated/menus package; a fork to suit my needs. This has a primary focus on Laravel 5 support with PSR coding standards. If you're looking for a menu builder solution for Laravel 4, 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.

Quick Installation

Begin by installing the package through Composer. Add Filipac/menus to your composer.json file:

"filipac/menus": "~1.0@dev"

Then run composer update to pull the package in.

Once this operation is complete, simply add the service provider class and facade alias to your project's config/app.php file:

Service Provider

'Filipac\Menus\MenusServiceProvider',

Facade

'Menu' => 'Filipac\Menus\Facades\Menu',

And that's it! Start building out some awesome menus!