Widget Component
Widget allow you to manage widgetize actions in Orchestra Platform. By default Orchestra Platform provides the following widgets:
Version Compatibility
Laravel | Widget |
---|---|
4.0.x | 2.0.x |
4.1.x | 2.1.x |
4.2.x | 2.2.x |
5.0.x | 3.0.x |
5.1.x | 3.1.x |
5.2.x | [email protected] |
Installation
To install through composer, simply put the following in your composer.json
file:
{
"require": {
"orchestra/widget": "~3.0"
}
}
And then run composer install
from the terminal.
Quick Installation
Above installation can also be simplify by using the following command:
composer require "orchestra/widget=~3.0"
Configuration
Next add the service provider in config/app.php
.
'providers' => [
// ...
Orchestra\Widget\WidgetServiceProvider::class,
],
Type of Widgets
- Menu to manage menu.
- Pane to manage dashboard items.
- Placeholder to manage sidebar widgets.