laraveldaily/laravel-charts
Laravel Charts by Laravel Daily generates interactive charts for your Laravel apps from Eloquent data. Quickly build line, bar, and pie charts with minimal code, support for multiple chart libraries, and configurable options—ideal for dashboards and admin panels.
Full Changelog: https://github.com/LaravelDaily/laravel-charts/compare/0.2.2...0.2.3
Small fix for bar chart.
Full Changelog: https://github.com/LaravelDaily/laravel-charts/compare/0.2.0...0.2.1
Full Changelog: https://github.com/LaravelDaily/laravel-charts/compare/0.1.29...0.2.0
Full Changelog: https://github.com/LaravelDaily/laravel-charts/compare/0.1.26...0.1.27
New parameter to disable Eloquent global scopes
Merged PR #48
Reverting PR from SHELA
Fix Pie Chart with Y axis https://github.com/LaravelDaily/laravel-charts/issues/44
Fixes provided by @Overx in thirs PR: https://github.com/LaravelDaily/laravel-charts/pull/37
Fix for empty dates provided by @oluwajubelo
New option conditions for multiple datasets and their colors:
'conditions' => [
['name' => 'Italy', 'condition' => 'country_id = 102', 'color' => 'black'],
['name' => 'France', 'condition' => 'country_id = 73', 'color' => 'blue'],
],
Ability to transform the aggregate result, with one new parameter aggregate_transform - callback function, like this:
// ...
'aggregate_function' => 'sum',
'aggregate_field' => 'paid_amount',
// ...
'aggregate_transform' => function($value) {
return round($value / 100, 2);
},
Important Typo fix
Pull request from contributor @albertopazf95
Change str_* to Str::
New functionality to group by relationship
How can I help you explore Laravel packages today?