sanatorium/dashboards

There is no license information available for the latest version (3.0.6) of this package.

Dashboards extension for Cartalyst Platform

Installs: 1

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 3

Forks: 0

Open Issues: 0

Type:platform-extension

3.0.6 2016-10-02 16:31 UTC

This package is not auto-updated.

Last update: 2024-04-13 17:35:25 UTC


README

Dashboards extension for Cartalyst Platform

Documentation

Register widget to dashboards

class SampleServiceProvider {

    public function boot()
    {
        $this->registerDashboardWidget();
    }

    /**
     * Register the dashboard widget "Visitors and Pageviews"
     * @throws ReflectionException
     */
    protected function registerDashboardWidget()
    {
        $this->app['sanatorium.dashboards.widgets']->registerService(
            'visitors_and_pageviews',                           // slug
            'Path\To\Class\DashboardVisitors'   	            // class
        );
    }
    
}

Blade directive @dashboard

Dashboard by slug

@dashboard('main')

Changelog

Changelog not available.

Support

Support not available.