1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-05 18:52:44 +01:00

Presenter variables for invoice

This commit is contained in:
David Bomba 2019-08-29 14:12:09 +10:00
parent 668e01b814
commit 13f21710ce

View File

@ -40,4 +40,15 @@ class InvoicePresenter extends EntityPresenter
{
return $this->client->present()->shipping_address();
}
public function company_logo()
{
return $this->company->logo;
}
public function client_logo()
{
return $this->client->logo;
}
}