瀏覽代碼

Dashboard appts - don't show cancelled

Vijayakrishnan 3 年之前
父節點
當前提交
6969b1fd96
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      app/Http/Controllers/HomeController.php

+ 1 - 0
app/Http/Controllers/HomeController.php

@@ -1045,6 +1045,7 @@ WHERE measurement.label NOT IN ('SBP', 'DBP')
         }
 
         $appointments = $appointments
+            ->whereRaw('status NOT IN (\'CANCELLED\', \'COMPLETED\')')
             ->orderBy('start_time', 'asc')
             ->get();