37 lines
735 B
PHP
37 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 : '';
|
|
}
|
|
|
|
}
|