This commit is contained in:
Dwi Swandhana
2026-03-06 06:54:18 +07:00
parent ab438f0c55
commit 2dffd56816
@@ -91,7 +91,10 @@ class FrontpageController extends Controller
)
->where(function($q) {
$q->whereNull('periksa.status')
->orWhere('periksa.status', '<>', 'Selesai');
->orWhere(function($sub) {
$sub->where('periksa.status', '<>', 'Selesai')
->where('periksa.status', 'not like', 'Dibatalkan%');
});
})
->whereNotNull('periksa.daftar')
->orderBy('periksa.daftar', 'ASC')