2018-11-22 12:12:41 +01:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 05:32:07 +02:00
|
|
|
*/
|
2018-11-22 12:12:41 +01:00
|
|
|
|
|
|
|
namespace App\Models\Presenters;
|
|
|
|
|
2019-01-27 00:22:57 +01:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Class ClientContactPresenter.
|
2019-01-27 00:22:57 +01:00
|
|
|
*/
|
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()
|
2021-01-04 13:38:00 +01:00
|
|
|
{
|
2021-01-01 01:52:42 +01:00
|
|
|
$contact_name = $this->entity->first_name.' '.$this->entity->last_name;
|
|
|
|
|
2021-01-04 13:38:00 +01:00
|
|
|
if (strlen($contact_name) > 1) {
|
2021-01-01 01:52:42 +01:00
|
|
|
return $contact_name;
|
2021-01-04 13:38:00 +01:00
|
|
|
}
|
2021-01-01 01:52:42 +01:00
|
|
|
|
2021-01-04 13:38:00 +01:00
|
|
|
return $this->entity->client->present()->name();
|
2019-07-22 05:54:34 +02:00
|
|
|
}
|
2020-06-10 07:21:11 +02:00
|
|
|
|
|
|
|
public function first_name()
|
|
|
|
{
|
2023-09-04 03:04:51 +02:00
|
|
|
return $this->entity->first_name ?? '';
|
2020-06-10 07:21:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function last_name()
|
|
|
|
{
|
2023-09-04 03:04:51 +02:00
|
|
|
return $this->entity->last_name ?? '';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function search_display()
|
|
|
|
{
|
|
|
|
return $this->name().' <'.$this->entity->email.'>' ?? '';
|
2020-06-10 07:21:11 +02:00
|
|
|
}
|
2018-11-22 12:12:41 +01:00
|
|
|
}
|