Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/SpartnerNL/Laravel-Sidebar
A Laravel Sidebar builder
https://github.com/SpartnerNL/Laravel-Sidebar
Last synced: 3 months ago
JSON representation
A Laravel Sidebar builder
- Host: GitHub
- URL: https://github.com/SpartnerNL/Laravel-Sidebar
- Owner: SpartnerNL
- License: mit
- Created: 2015-02-13T14:11:22.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-04-14T17:24:59.000Z (7 months ago)
- Last Synced: 2024-05-17T06:46:12.546Z (6 months ago)
- Language: PHP
- Homepage:
- Size: 124 KB
- Stars: 110
- Watchers: 17
- Forks: 55
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
- awesome - SpartnerNL/Laravel-Sidebar - A Laravel Sidebar builder (PHP)
README
# WARNING! Not actively supported or maintained.
# Laravel Sidebar
[![GitHub release](https://img.shields.io/github/release/Maatwebsite/Laravel-Sidebar.svg?style=flat)](https://packagist.org/packages/maatwebsite/laravel-sidebar)
[![Travis](https://img.shields.io/travis/Maatwebsite/Laravel-Sidebar.svg?style=flat)](https://travis-ci.org/Maatwebsite/Laravel-Sidebar)
[![Scrutinizer](https://img.shields.io/scrutinizer/g/Maatwebsite/Laravel-Sidebar.svg?style=flat)](https://github.com/Maatwebsite/Laravel-Sidebar)
[![Packagist](https://img.shields.io/packagist/dd/Maatwebsite/Laravel-Sidebar.svg?style=flat)](https://packagist.org/packages/maatwebsite/laravel-sidebar)
[![Packagist](https://img.shields.io/packagist/dm/Maatwebsite/Laravel-Sidebar.svg?style=flat)](https://packagist.org/packages/maatwebsite/laravel-sidebar)
[![Packagist](https://img.shields.io/packagist/dt/Maatwebsite/Laravel-Sidebar.svg?style=flat)](https://packagist.org/packages/maatwebsite/laravel-sidebar)## Installation
Require this package in your `composer.json` and run `composer update`.
```php
"maatwebsite/laravel-sidebar": "~2.1"
```After updating composer, add the ServiceProvider to the providers array in `config/app.php`
```php
'Maatwebsite\Sidebar\SidebarServiceProvider',
```Add the package middleware to `App\Http\Kernel`:
```php
`'Maatwebsite\Sidebar\Middleware\ResolveSidebars'`
```To publish the default views use:
```php
php artisan vendor:publish --tag="views"
```To publish the config use:
```php
php artisan vendor:publish --tag="config"
```## Documentation
See the wiki: https://github.com/Maatwebsite/Laravel-Sidebar/wiki
## Contributing
**ALL contributions** should be made to appropriate branch (e.g. 2.0 for 2.0.* bug fixes). Bug fixes should never be sent to the master branch.
We follow PSR-1, PSR-2 and PSR-4 coding styles.
Added or fixed functionality should be backed with unit tests.
## License
This package is licensed under MIT. You are free to use it in personal and commercial projects.