mirror of
https://github.com/v2board/v2board.git
synced 2024-11-10 17:49:11 +08:00
update: statistics
This commit is contained in:
parent
faeaa02a84
commit
5766ec1951
@ -50,8 +50,8 @@ class V2BoardStatistics extends Command
|
||||
{
|
||||
$endAt = strtotime(date('Y-m-d'));
|
||||
$startAt = strtotime('-1 day', $endAt);
|
||||
$builder = Order::where('updated_at', '>=', $startAt)
|
||||
->where('updated_at', '<', $endAt)
|
||||
$builder = Order::where('created_at', '>=', $startAt)
|
||||
->where('created_at', '<', $endAt)
|
||||
->whereIn('status', [3, 4]);
|
||||
$orderCount = $builder->count();
|
||||
$orderAmount = $builder->sum('total_amount');
|
||||
|
Loading…
Reference in New Issue
Block a user