From 614b538ecf679844de883cd11b8f86649c243f8a Mon Sep 17 00:00:00 2001 From: Ilham Wara Nugroho Date: Fri, 20 Feb 2026 14:31:09 +0700 Subject: [PATCH] update --- app/Helpers/custom.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/Helpers/custom.php b/app/Helpers/custom.php index 05a5db0..23b1b31 100644 --- a/app/Helpers/custom.php +++ b/app/Helpers/custom.php @@ -389,8 +389,7 @@ if (!function_exists('topikById')) { if (!function_exists('tabelById')) { function tabelById($id){ - $keyId = decode_id($id); - $tabel = TabelData::find($keyId); + $tabel = TabelData::find($id); return $tabel; } }