mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 13:42:49 +01:00
0fbda85a59
- Removed unused uses - Type hinting for method parameters - Removed commented code - Introduced comments for classes and methods - Short array syntax
37 lines
687 B
PHP
37 lines
687 B
PHP
<?php namespace App\Ninja\Presenters;
|
|
|
|
use Utils;
|
|
use Laracasts\Presenter\Presenter;
|
|
|
|
/**
|
|
* Class AccountPresenter
|
|
*/
|
|
class AccountPresenter extends Presenter
|
|
{
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function name()
|
|
{
|
|
return $this->entity->name ?: trans('texts.untitled_account');
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function website()
|
|
{
|
|
return Utils::addHttp($this->entity->website);
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function currencyCode()
|
|
{
|
|
$currencyId = $this->entity->getCurrencyId();
|
|
$currency = Utils::getFromCache($currencyId, 'currencies');
|
|
return $currency->code;
|
|
}
|
|
} |