Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hnhdigital-os/laravel-navigation-builder
Create and manage your navigation in Laravel
https://github.com/hnhdigital-os/laravel-navigation-builder
Last synced: about 7 hours ago
JSON representation
Create and manage your navigation in Laravel
- Host: GitHub
- URL: https://github.com/hnhdigital-os/laravel-navigation-builder
- Owner: hnhdigital-os
- License: mit
- Created: 2016-10-28T09:44:11.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2023-05-11T04:18:00.000Z (over 1 year ago)
- Last Synced: 2024-12-15T09:44:55.530Z (about 1 month ago)
- Language: PHP
- Homepage:
- Size: 110 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
```
__ ___ _ _ _
/\ \ \__ ___ __/ __\_ _(_) | __| | ___ _ __
/ \/ / _` \ \ / /__\// | | | | |/ _` |/ _ \ '__|
/ /\ / (_| |\ V / \/ \ |_| | | | (_| | __/ |
\_\ \/ \__,_| \_/\_____/\__,_|_|_|\__,_|\___|_|```
Create and manage your navigation.
[![Latest Stable Version](https://poser.pugx.org/hnhdigital-os/laravel-navigation-builder/v/stable.svg)](https://packagist.org/packages/hnhdigital-os/laravel-navigation-builder) [![Total Downloads](https://poser.pugx.org/hnhdigital-os/laravel-navigation-builder/downloads.svg)](https://packagist.org/packages/hnhdigital-os/laravel-navigation-builder) [![Latest Unstable Version](https://poser.pugx.org/hnhdigital-os/laravel-navigation-builder/v/unstable.svg)](https://packagist.org/packages/hnhdigital-os/laravel-navigation-builder) [![Built for Laravel](https://img.shields.io/badge/Built_for-Laravel-green.svg)](https://laravel.com/) [![License](https://poser.pugx.org/hnhdigital-os/laravel-navigation-builder/license.svg)](https://packagist.org/packages/hnhdigital-os/laravel-navigation-builder) [![Donate to this project using Patreon](https://img.shields.io/badge/patreon-donate-yellow.svg)](https://patreon.com/RoccoHoward)
This package has been developed by H&H|Digital, an Australian botique developer. Visit us at [hnh.digital](http://hnh.digital).
## Documentation
* [Installation](#install)
* [Configuration](#configuration)
* [Usage](#usage)
* [Contributing](#contributing)
* [Credits](#credits)
* [License](#license)## Installation
Via composer:
`$ composer require hnhdigital-os/laravel-navigation-builder ~3.0`
## Configuration
Enable the facade by editing config/app.php:
```php
'aliases' => [
...
'Nav' => HnhDigital\NavigationBuilder\Facade::class,
...
];
```The service provider will autoload from Laravel 5.5.
To enable the service provider in versions prior to Laravel 5.4, edit the config/app.php:
Enable the service provider by editing config/app.php:
```php
'providers' => [
...
HnhDigital\NavigationBuilder\ServiceProvider::class,
...
];
```## Usage
(Not available yet!)
See the [wiki](https://github.com/hnhdigital-os/laravel-navigation-builder/wiki) for all usage documentation.
## Contributing
Please see [CONTRIBUTING](https://github.com/hnhdigital-os/laravel-navigation-builder/blob/master/CONTRIBUTING.md) for details.
## Credits
* [Rocco Howard](https://github.com/RoccoHoward)
* Inspired by [Laravel Menu](https://github.com/lavary/laravel-menu)
* [All Contributors](https://github.com/hnhdigital-os/laravel-navigation-builder/contributors)## License
The MIT License (MIT). Please see [License File](https://github.com/hnhdigital-os/laravel-navigation-builder/blob/master/LICENSE) for more information.