no message

This commit is contained in:
hellcat 2025-10-13 20:13:00 +08:00
parent c5862ce1e9
commit 305090bfe1

View File

@ -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")