mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
28 lines
643 B
PHP
28 lines
643 B
PHP
<?php namespace App\Ninja\Presenters;
|
|
|
|
use Utils;
|
|
use Laracasts\Presenter\Presenter;
|
|
|
|
class ExpensePresenter extends Presenter {
|
|
|
|
// Expenses
|
|
public function vendor()
|
|
{
|
|
return $this->entity->vendor ? $this->entity->vendor->getDisplayName() : '';
|
|
}
|
|
|
|
public function expense_date()
|
|
{
|
|
return Utils::fromSqlDate($this->entity->expense_date);
|
|
}
|
|
|
|
public function invoiced_amount()
|
|
{
|
|
return $this->entity->invoice_id ? $this->entity->convertedAmount() : 0;
|
|
}
|
|
|
|
public function link()
|
|
{
|
|
return link_to('/expenses/' . $this->entity->public_id, $this->entity->name);
|
|
}
|
|
} |