add graphs for stats
This commit is contained in:
23
app/Charts/Shop/Order.php
Normal file
23
app/Charts/Shop/Order.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace App\Charts\Shop;
|
||||
|
||||
use Akaunting\Apexcharts\Chart;
|
||||
use App\Repositories\Shop\OrderStatistics;
|
||||
|
||||
class Order
|
||||
{
|
||||
public static function getMonthly()
|
||||
{
|
||||
$data = OrderStatistics::getTotalMonthly();
|
||||
|
||||
return (new Chart)->setType('bar')
|
||||
->setWidth('100%')
|
||||
->setHeight(300)
|
||||
->setLabels(array_keys($data))
|
||||
->setDataset('CA', 'bar', array_values($data))
|
||||
->setColor('#334F17')
|
||||
->setStrokeColors(['#527C39'])
|
||||
;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user