2017-01-30 21:40:43 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Ninja\Presenters;
|
2016-12-25 19:43:42 +02:00
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|