mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 11:12:43 +01:00
43e57d0117
* minor fix for payment notifications * styleci * Limit Self updating to self hosters only : * Fixes for designs * Minor fixes for self-update
48 lines
1019 B
PHP
48 lines
1019 B
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Models\Presenters;
|
|
|
|
use App\Utils\Number;
|
|
use App\Utils\Traits\MakesDates;
|
|
|
|
/**
|
|
* Class InvoicePresenter
|
|
*
|
|
* For convenience and to allow users to easiliy
|
|
* customise their invoices, we provide all possible
|
|
* invoice variables to be available from this presenter.
|
|
*
|
|
* Shortcuts to other presenters are here to facilitate
|
|
* a clean UI / UX
|
|
*
|
|
* @package App\Models\Presenters
|
|
*/
|
|
class InvoicePresenter extends EntityPresenter
|
|
{
|
|
use MakesDates;
|
|
|
|
|
|
public function amount()
|
|
{
|
|
return Number::formatMoney($this->balance, $this->client);
|
|
}
|
|
|
|
public function invoice_number()
|
|
{
|
|
if ($this->number != '') {
|
|
return $this->number;
|
|
} else {
|
|
return '';
|
|
}
|
|
}
|
|
}
|