PHPackages                             nurmanhabib/laravel-menu - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. nurmanhabib/laravel-menu

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

nurmanhabib/laravel-menu
========================

Make it easy to create navigation menus on Laravel

v5.0.2(5y ago)123068MITPHP

Since Sep 21Pushed 5y ago2 watchersCompare

[ Source](https://github.com/nurmanhabib/laravel-menu)[ Packagist](https://packagist.org/packages/nurmanhabib/laravel-menu)[ RSS](/packages/nurmanhabib-laravel-menu/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (3)Dependencies (2)Versions (12)Used By (0)

Welcome to Laravel Menu!
========================

[](#welcome-to-laravel-menu)

Generate multi navigation menus with unique names, can be displayed anywhere. Custom templating. Support Laravel 5, 6, 7.

[![Alt image](screenshoot.png)](screenshoot.png)

---

Installation
------------

[](#installation)

####  Installation with Composer

[](#-installation-with-composer)

Simply execute the following command

```
composer require nurmanhabib/laravel-menu

```

####  Register Service Provider and Facade

[](#-register-service-provider-and-facade)

Add `Nurmanhabib\LaravelMenu\MenuServiceProvider` to the file in `config/app.php` in array with key `providers`.

```
'providers' => [
    ...,
    ...,

    Nurmanhabib\LaravelMenu\MenuServiceProvider::class,
],
```

Add `Nurmanhabib\LaravelMenu\Facades\Menu` to the file in `config/app.php` in array with key `aliases`.

```
'aliases' => [
    ...,
    ...,

    'Menu' => Nurmanhabib\LaravelMenu\Facades\Menu::class,
],
```

---

Quick Example
-------------

[](#quick-example)

You can create in the routes files, middleware, or service providers that you custom yourself as needed.

```
