1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Models/Presenters/UserPresenter.php

14 lines
205 B
PHP
Raw Normal View History

<?php
namespace App\models\Presenters;
class UserPresenter extends EntityPresenter
{
public function name()
{
return $this->entity->first_name . ' ' . $this->entity->last_name;
}
}