Update perbaikan notifikasi sertifikat dengan tidak menampilkan deleted_at v2

This commit is contained in:
mikael-zakaria 2026-04-07 12:51:22 +07:00
parent 2e37b2b88c
commit c21a15a715

View File

@ -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();