From 515da7205fda9829511049c5784d2ff49841f845 Mon Sep 17 00:00:00 2001 From: Hankin Date: Fri, 12 Jun 2026 11:56:34 +0800 Subject: [PATCH] wait user confirm --- app/Http/Controllers/Server/Admin/EarningController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/Server/Admin/EarningController.php b/app/Http/Controllers/Server/Admin/EarningController.php index deb664c..8ad6cbe 100644 --- a/app/Http/Controllers/Server/Admin/EarningController.php +++ b/app/Http/Controllers/Server/Admin/EarningController.php @@ -1375,7 +1375,7 @@ class EarningController extends Controller $end_time = $request->end_time; $merchant_id = $request->account_id; $nopage = $request->nopage; - $result = MEarningwithdraws::whereIn('status', ['finished', 'freezing', 'canceled']) + $result = MEarningwithdraws::whereIn('status', ['finished', 'freezing', 'canceled', "wait_user_confirm"]) // ->select('id', 'way', 'real_value', 'value', 'status', 'created_at', 'err_msg', 'name', 'account') ->where('m_id', $merchant_id) ->where('m_user_id', 0)