mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
38 lines
735 B
PHP
38 lines
735 B
PHP
<?php namespace App\Ninja\Presenters;
|
|
|
|
use Utils;
|
|
|
|
/**
|
|
* Class ExpensePresenter
|
|
*/
|
|
class ExpensePresenter extends EntityPresenter
|
|
{
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function vendor()
|
|
{
|
|
return $this->entity->vendor ? $this->entity->vendor->getDisplayName() : '';
|
|
}
|
|
|
|
/**
|
|
* @return \DateTime|string
|
|
*/
|
|
public function expense_date()
|
|
{
|
|
return Utils::fromSqlDate($this->entity->expense_date);
|
|
}
|
|
|
|
public function amount()
|
|
{
|
|
return Utils::formatMoney($this->entity->amount, $this->entity->expense_currency_id);
|
|
}
|
|
|
|
public function category()
|
|
{
|
|
return $this->entity->expense_category ? $this->entity->expense_category->name : '';
|
|
}
|
|
|
|
}
|