diff --git a/app/Models/Invoice.php b/app/Models/Invoice.php index 432e811bff6a..6273ce74e408 100644 --- a/app/Models/Invoice.php +++ b/app/Models/Invoice.php @@ -140,7 +140,9 @@ class Invoice extends EntityModel implements BalanceAffecting */ public function getDisplayName() { - return $this->is_recurring ? trans('texts.recurring') : $this->invoice_number; + return $this->is_recurring + ? trans('texts.recurring') + : $this->invoice_number.' ('.$this->client->name.')'; } /**