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

17 lines
339 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);
}
2015-11-06 11:59:53 +01:00
}