20 lines
311 B
PHP
20 lines
311 B
PHP
<?php
|
|
|
|
namespace App\Models\Presenters;
|
|
|
|
/**
|
|
* Class CompanyPresenter
|
|
* @package App\Models\Presenters
|
|
*/
|
|
class CompanyPresenter extends EntityPresenter
|
|
{
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function name()
|
|
{
|
|
return $this->entity->name ?: ctrans('texts.untitled_account');
|
|
}
|
|
|
|
}
|