andrewboy / laravel-statistics-panel
There is no license information available for the latest version (dev-master) of this package.
Laravel package for statistics panel.
Package info
github.com/andrewboy/LaravelStatisticsPanel
Language:JavaScript
pkg:composer/andrewboy/laravel-statistics-panel
dev-master
2017-03-08 11:18 UTC
Requires
- php: >=5.5.9
- illuminate/support: >5.0
Requires (Dev)
- fabpot/php-cs-fixer: ^1.10
- laravel/laravel: 5.1.*
- phpunit/phpunit: 4.*
This package is not auto-updated.
Last update: 2026-03-15 03:50:43 UTC
README
readme
(function(stat_widgets){ function StatDiaperGrid(id) { this.id = id; }
StatDiaperGrid.prototype = Object.create(window.statistics_panel.widgets.grid.prototype);
StatDiaperGrid.prototype.constructor = StatDiaperGrid;
StatDiaperGrid.prototype.init = function() {};
StatDiaperGrid.prototype.update = function(data) {
this.setGrid(data.data);
$('.summary', this.getFooter()).text(data.total);
};
stat_widgets.diaper_grid = StatDiaperGrid;
}(window.statistics_panel.stat_widgets));