mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-13 14:42:42 +01:00
12 lines
231 B
PHP
12 lines
231 B
PHP
|
<?php namespace App\Ninja\Presenters;
|
||
|
|
||
|
use Laracasts\Presenter\Presenter;
|
||
|
|
||
|
class AccountPresenter extends Presenter {
|
||
|
|
||
|
public function name()
|
||
|
{
|
||
|
return $this->entity->name ?: trans('texts.untitled_account');
|
||
|
}
|
||
|
|
||
|
}
|