2018-11-22 12:12:41 +01:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2018-11-22 12:12:41 +01:00
|
|
|
|
|
|
|
namespace App\Models\Presenters;
|
|
|
|
|
2019-01-27 00:22:57 +01:00
|
|
|
/**
|
|
|
|
* Class ClientContactPresenter
|
|
|
|
* @package App\Models\Presenters
|
|
|
|
*/
|
2018-11-22 12:12:41 +01:00
|
|
|
class ClientContactPresenter extends EntityPresenter
|
|
|
|
{
|
|
|
|
|
2019-07-22 05:54:34 +02:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function name()
|
|
|
|
{
|
|
|
|
return $this->entity->first_name . ' ' . $this->entity->last_name;
|
|
|
|
}
|
2020-06-10 07:21:11 +02:00
|
|
|
|
|
|
|
public function first_name()
|
|
|
|
{
|
|
|
|
return $this->entity->first_name ?: '';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function last_name()
|
|
|
|
{
|
|
|
|
return $this->entity->last_name ?: '';
|
|
|
|
}
|
2018-11-22 12:12:41 +01:00
|
|
|
}
|