Explorar o código

Client memos - show only un-cancelled memos

Vijayakrishnan Krishnan %!s(int64=4) %!d(string=hai) anos
pai
achega
62f9f68380
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  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');
     }