mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
28 lines
458 B
PHP
28 lines
458 B
PHP
<?php
|
|
|
|
namespace App\Ninja\Presenters;
|
|
|
|
use Utils;
|
|
|
|
/**
|
|
* Class CreditPresenter.
|
|
*/
|
|
class CreditPresenter extends EntityPresenter
|
|
{
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function client()
|
|
{
|
|
return $this->entity->client ? $this->entity->client->getDisplayName() : '';
|
|
}
|
|
|
|
/**
|
|
* @return \DateTime|string
|
|
*/
|
|
public function credit_date()
|
|
{
|
|
return Utils::fromSqlDate($this->entity->credit_date);
|
|
}
|
|
}
|