From 5dd212422c62c5c04f075aa1e67033ef68e40a0f Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Fri, 26 Dec 2025 11:35:53 +0530 Subject: [PATCH] Added regex pattern for sticker reprint --- app/Filament/Pages/StickerReprint.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Filament/Pages/StickerReprint.php b/app/Filament/Pages/StickerReprint.php index 23763cd..f42bb7f 100644 --- a/app/Filament/Pages/StickerReprint.php +++ b/app/Filament/Pages/StickerReprint.php @@ -1403,7 +1403,7 @@ class StickerReprint extends Page implements HasForms if (strpos($originalQR, '/') != false) { // Allowed endings - $allowed = ['/m', '/M', '/p', '/P']; + $allowed = ['/m', '/M', '/p', '/P', '/m|', '/M|', '/p|', '/P|']; $foundValidEnding = false;