1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Models/Presenters/InvoicePresenter.php

45 lines
983 B
PHP
Raw Normal View History

2019-08-29 06:07:04 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2019-08-29 06:07:04 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2019-08-29 06:07:04 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Models\Presenters;
2019-09-05 07:04:52 +02:00
use App\Utils\Number;
use App\Utils\Traits\MakesDates;
2019-08-29 06:07:04 +02:00
/**
* Class InvoicePresenter.
2019-08-29 06:07:04 +02:00
*
* For convenience and to allow users to easiliy
2019-08-29 06:07:04 +02:00
* customise their invoices, we provide all possible
* invoice variables to be available from this presenter.
*
* Shortcuts to other presenters are here to facilitate
2019-08-29 06:07:04 +02:00
* a clean UI / UX
*/
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 '';
}
}
2019-08-29 06:07:04 +02:00
}