From c21a15a7151e61ffcfe0db294075a028c862b258 Mon Sep 17 00:00:00 2001 From: mikael-zakaria Date: Tue, 7 Apr 2026 12:51:22 +0700 Subject: [PATCH] Update perbaikan notifikasi sertifikat dengan tidak menampilkan deleted_at v2 --- app/Cells/SidebarCertificateCell.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Cells/SidebarCertificateCell.php b/app/Cells/SidebarCertificateCell.php index edbb108..9efa611 100644 --- a/app/Cells/SidebarCertificateCell.php +++ b/app/Cells/SidebarCertificateCell.php @@ -28,7 +28,7 @@ class SidebarCertificateCell extends Cell { ") ->where('certificates.status', 'unvalidated') ->Where('certificates.manager_validation_at', null) - ->where('deleted_at', null) + ->where('certificates.deleted_at', null) ->get() ->getRow(); @@ -51,7 +51,7 @@ class SidebarCertificateCell extends Cell { ->where('users.reportto', $userId) ->where('certificates.status', 'unvalidated') ->Where('certificates.spv_validation_at', null) - ->where('deleted_at', null) + ->where('certificates.deleted_at', null) ->get() ->getRow();