1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00
invoiceninja/app/Ninja/Presenters/AccountPresenter.php

24 lines
541 B
PHP
Raw Normal View History

2015-11-06 11:59:53 +01:00
<?php namespace App\Ninja\Presenters;
2015-12-14 22:05:17 +01:00
use Utils;
2015-11-06 11:59:53 +01:00
use Laracasts\Presenter\Presenter;
class AccountPresenter extends Presenter {
public function name()
{
return $this->entity->name ?: trans('texts.untitled_account');
}
2015-12-14 22:05:17 +01:00
public function website()
{
return Utils::addHttp($this->entity->website);
}
2016-01-21 20:15:30 +01:00
public function currencyCode()
{
$currencyId = $this->entity->getCurrencyId();
$currency = Utils::getFromCache($currencyId, 'currencies');
return $currency->code;
}
2015-11-06 11:59:53 +01:00
}