19 lines
326 B
PHP
19 lines
326 B
PHP
<?php
|
|
|
|
namespace App\Repositories\Shop;
|
|
|
|
use App\Models\Shop\Homepage;
|
|
|
|
class Dashboards
|
|
{
|
|
|
|
public static function getStats()
|
|
{
|
|
return [
|
|
'orders_count' => Orders::countByMonth(),
|
|
'orders_sum' => Orders::sumByMonth(),
|
|
'orders_avg' => Orders::avgByMonth(),
|
|
];
|
|
}
|
|
}
|