mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
21 lines
308 B
PHP
21 lines
308 B
PHP
<?php
|
|
|
|
namespace App\Models\Presenters;
|
|
|
|
/**
|
|
* Class UserPresenter
|
|
* @package App\Models\Presenters
|
|
*/
|
|
class UserPresenter extends EntityPresenter
|
|
{
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function name()
|
|
{
|
|
return $this->entity->first_name . ' ' . $this->entity->last_name;
|
|
}
|
|
|
|
}
|