mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
17 lines
337 B
PHP
17 lines
337 B
PHP
<?php
|
|
|
|
namespace App\Ninja\Presenters;
|
|
|
|
class UserPresenter extends EntityPresenter
|
|
{
|
|
public function email()
|
|
{
|
|
return htmlentities(sprintf('%s <%s>', $this->fullName(), $this->entity->email));
|
|
}
|
|
|
|
public function fullName()
|
|
{
|
|
return $this->entity->first_name . ' ' . $this->entity->last_name;
|
|
}
|
|
}
|