瀏覽代碼

Client memos - show only un-cancelled memos

Vijayakrishnan Krishnan 4 年之前
父節點
當前提交
62f9f68380
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      app/Models/Client.php

+ 1 - 0
app/Models/Client.php

@@ -85,6 +85,7 @@ class Client extends Model
 
     public function memos() {
         return $this->hasMany(ClientMemo::class, 'client_id', 'id')
+            ->where('is_cancelled', false)
             ->orderBy('created_at', 'desc');
     }