mirror of
				https://github.com/v2board/v2board.git
				synced 2025-10-31 09:21:46 +08:00 
			
		
		
		
	update: fix word
This commit is contained in:
		| @@ -31,9 +31,9 @@ class StatController extends Controller | ||||
|                 'month_register_total' => User::where('created_at', '>=', strtotime(date('Y-m-1'))) | ||||
|                     ->where('created_at', '<', time()) | ||||
|                     ->count(), | ||||
|                 'ticket_pendding_total' => Ticket::where('status', 0) | ||||
|                 'ticket_pending_total' => Ticket::where('status', 0) | ||||
|                     ->count(), | ||||
|                 'commission_pendding_total' => Order::where('commission_status', 0) | ||||
|                 'commission_pending_total' => Order::where('commission_status', 0) | ||||
|                     ->where('invite_user_id', '!=', NULL) | ||||
|                     ->whereNotIn('status', [0, 2]) | ||||
|                     ->where('commission_balance', '>', 0) | ||||
|   | ||||
| @@ -4,6 +4,7 @@ namespace App\Http\Controllers\User; | ||||
|  | ||||
| use App\Http\Controllers\Controller; | ||||
| use App\Http\Requests\User\OrderSave; | ||||
| use App\Models\CommissionLog; | ||||
| use App\Models\Payment; | ||||
| use App\Services\CouponService; | ||||
| use App\Services\OrderService; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user