From 305090bfe1a65cb8fa268a897a713169b92a8b3a Mon Sep 17 00:00:00 2001 From: hellcat <> Date: Mon, 13 Oct 2025 20:13:00 +0800 Subject: [PATCH] no message --- src/Controllers/User/PlanController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Controllers/User/PlanController.php b/src/Controllers/User/PlanController.php index 5223df89f..0cd22e7d1 100755 --- a/src/Controllers/User/PlanController.php +++ b/src/Controllers/User/PlanController.php @@ -29,9 +29,9 @@ final class PlanController extends BaseController ->where("product_code", "!=", "code") ->where("status", "!=", "cancelled") ->orderByRaw("CASE - WHEN status = 'payment_pending' THEN 1 + WHEN status = 'pending' THEN 1 WHEN status = 'activated' THEN 2 - WHEN status = 'pending' THEN 3 + WHEN status = 'payment_pending' THEN 3 WHEN status = 'expired' THEN 4 ELSE 5 END")