Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/caffeinated/menus
:pushpin: Menu generator package for the Laravel framework
https://github.com/caffeinated/menus
caffeinated laravel menus navigation
Last synced: 7 days ago
JSON representation
:pushpin: Menu generator package for the Laravel framework
- Host: GitHub
- URL: https://github.com/caffeinated/menus
- Owner: caffeinated
- Created: 2015-02-14T05:47:30.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2023-03-24T23:55:00.000Z (almost 2 years ago)
- Last Synced: 2024-05-17T18:45:18.837Z (8 months ago)
- Topics: caffeinated, laravel, menus, navigation
- Language: PHP
- Homepage: https://caffeinatedpackages.com
- Size: 87.9 KB
- Stars: 133
- Watchers: 10
- Forks: 59
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Caffeinated Menus
=================
[![Source](http://img.shields.io/badge/source-caffeinated/menus-blue.svg?style=flat-square)](https://github.com/caffeinated/menus)
[![License](http://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](https://tldrlegal.com/license/mit-license)---
Easily create dynamic menus from within your Laravel 5 application. Originally developed for [FusionCMS](https://github.com/fusioncms/fusioncms), an open source content management system.
Caffeinated Menus was based off of Lavary's [Laravel Menu](https://github.com/lavary/laravel-menu) package with support for the Caffeinated Shinobi package.
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
```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!