1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Ninja/Presenters/ExpensePresenter.php

28 lines
643 B
PHP
Raw Normal View History

2016-01-06 20:52:09 +01:00
<?php namespace App\Ninja\Presenters;
use Utils;
use Laracasts\Presenter\Presenter;
class ExpensePresenter extends Presenter {
2016-01-07 16:14:11 +01:00
// Expenses
2016-01-06 20:52:09 +01:00
public function vendor()
{
return $this->entity->vendor ? $this->entity->vendor->getDisplayName() : '';
}
public function expense_date()
{
return Utils::fromSqlDate($this->entity->expense_date);
}
2016-01-21 21:36:49 +01:00
2016-02-24 22:54:43 +01:00
public function invoiced_amount()
{
return $this->entity->invoice_id ? $this->entity->convertedAmount() : 0;
2016-02-24 22:54:43 +01:00
}
public function link()
{
return link_to('/expenses/' . $this->entity->public_id, $this->entity->name);
}
2016-01-06 20:52:09 +01:00
}