mirror of
				https://github.com/v2board/v2board.git
				synced 2025-10-31 17:31:49 +08:00 
			
		
		
		
	update: admin/stat/getOverride
This commit is contained in:
		| @@ -2,6 +2,7 @@ | ||||
|  | ||||
| namespace App\Http\Controllers\Admin; | ||||
|  | ||||
| use App\Models\CommissionLog; | ||||
| use App\Models\ServerShadowsocks; | ||||
| use App\Models\ServerTrojan; | ||||
| use App\Models\StatUser; | ||||
| @@ -47,14 +48,12 @@ class StatController extends Controller | ||||
|                     ->where('created_at', '<', strtotime(date('Y-m-1'))) | ||||
|                     ->whereNotIn('status', [0, 2]) | ||||
|                     ->sum('total_amount'), | ||||
|                 'commission_month_payout' => Order::where('actual_commission_balance' ,'!=', NULL) | ||||
|                     ->where('created_at', '>=', strtotime(date('Y-m-1'))) | ||||
|                 'commission_month_payout' => CommissionLog::where('created_at', '>=', strtotime(date('Y-m-1'))) | ||||
|                     ->where('created_at', '<', time()) | ||||
|                     ->sum('actual_commission_balance'), | ||||
|                 'commission_last_month_payout' => Order::where('actual_commission_balance' ,'!=', NULL) | ||||
|                     ->where('created_at', '>=', strtotime('-1 month', strtotime(date('Y-m-1')))) | ||||
|                     ->sum('get_amount'), | ||||
|                 'commission_last_month_payout' => CommissionLog::where('created_at', '>=', strtotime('-1 month', strtotime(date('Y-m-1')))) | ||||
|                     ->where('created_at', '<', strtotime(date('Y-m-1'))) | ||||
|                     ->sum('actual_commission_balance'), | ||||
|                     ->sum('get_amount'), | ||||
|             ] | ||||
|         ]); | ||||
|     } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user