andrewboy / laravel-statistics-panel
此包的最新版本(dev-master)没有提供许可证信息。
Laravel 统计面板包。
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: 2024-09-14 19:19:59 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));