mirror of
				https://github.com/v2board/v2board.git
				synced 2025-10-31 17:31:49 +08:00 
			
		
		
		
	update: fix status
This commit is contained in:
		| @@ -34,11 +34,11 @@ class StatController extends Controller | |||||||
|                     ->count(), |                     ->count(), | ||||||
|                 'day_income' => Order::where('created_at', '>=', strtotime(date('Y-m-d'))) |                 'day_income' => Order::where('created_at', '>=', strtotime(date('Y-m-d'))) | ||||||
|                     ->where('created_at', '<', time()) |                     ->where('created_at', '<', time()) | ||||||
|                     ->where('status', [3, 4]) |                     ->whereIn('status', [3, 4]) | ||||||
|                     ->sum('total_amount'), |                     ->sum('total_amount'), | ||||||
|                 'last_month_income' => Order::where('created_at', '>=', strtotime('-1 month', strtotime(date('Y-m-1')))) |                 'last_month_income' => Order::where('created_at', '>=', strtotime('-1 month', strtotime(date('Y-m-1')))) | ||||||
|                     ->where('created_at', '<', strtotime(date('Y-m-1'))) |                     ->where('created_at', '<', strtotime(date('Y-m-1'))) | ||||||
|                     ->where('status', [3, 4]) |                     ->whereIn('status', [3, 4]) | ||||||
|                     ->sum('total_amount') |                     ->sum('total_amount') | ||||||
|             ] |             ] | ||||||
|         ]); |         ]); | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user