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'))) |                 'month_register_total' => User::where('created_at', '>=', strtotime(date('Y-m-1'))) | ||||||
|                     ->where('created_at', '<', time()) |                     ->where('created_at', '<', time()) | ||||||
|                     ->count(), |                     ->count(), | ||||||
|                 'ticket_pendding_total' => Ticket::where('status', 0) |                 'ticket_pending_total' => Ticket::where('status', 0) | ||||||
|                     ->count(), |                     ->count(), | ||||||
|                 'commission_pendding_total' => Order::where('commission_status', 0) |                 'commission_pending_total' => Order::where('commission_status', 0) | ||||||
|                     ->where('invite_user_id', '!=', NULL) |                     ->where('invite_user_id', '!=', NULL) | ||||||
|                     ->whereNotIn('status', [0, 2]) |                     ->whereNotIn('status', [0, 2]) | ||||||
|                     ->where('commission_balance', '>', 0) |                     ->where('commission_balance', '>', 0) | ||||||
|   | |||||||
| @@ -4,6 +4,7 @@ namespace App\Http\Controllers\User; | |||||||
|  |  | ||||||
| use App\Http\Controllers\Controller; | use App\Http\Controllers\Controller; | ||||||
| use App\Http\Requests\User\OrderSave; | use App\Http\Requests\User\OrderSave; | ||||||
|  | use App\Models\CommissionLog; | ||||||
| use App\Models\Payment; | use App\Models\Payment; | ||||||
| use App\Services\CouponService; | use App\Services\CouponService; | ||||||
| use App\Services\OrderService; | use App\Services\OrderService; | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user