orchestral / widget by crynobone

Widget Component for Orchestra Platform
94,279
2
3
Package Data
Maintainer Username: crynobone
Maintainer Contact: crynobone@gmail.com (Mior Muhammad Zaki)
Package Create Date: 2013-04-03
Package Last Update: 2021-04-18
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-25 15:02:56
Package Statistics
Total Downloads: 94,279
Monthly Downloads: 119
Daily Downloads: 7
Total Stars: 2
Total Watchers: 3
Total Forks: 0
Total Open Issues: 0

Widget Component for Orchestra Platform

Widget Component allow you to manage widgetize actions in Orchestra Platform. By default Orchestra Platform provides the following widgets:

  • Menu to manage menu.
  • Pane to manage dashboard items.
  • Placeholder to manage sidebar widgets.

Build Status Latest Stable Version Total Downloads Latest Unstable Version License Coverage Status

Table of Content

Version Compatibility

Laravel | Widget :----------|:---------- 5.5.x | 3.5.x 5.6.x | 3.6.x 5.7.x | 3.7.x 5.8.x | 3.8.x

Installation

To install through composer, simply put the following in your composer.json file:

{
    "require": {
        "orchestra/widget": "^3.5"
    }
}

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.5"

Configuration

Add following service providers in config/app.php.

'providers' => [

    // ...

    Orchestra\Widget\WidgetServiceProvider::class,
],