mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-24 02:14:21 -04:00
20 lines
385 B
PHP
20 lines
385 B
PHP
<?php
|
|
|
|
namespace App\Models\Presenters;
|
|
|
|
/**
|
|
* Class ClientPresenter
|
|
* @package App\Models\Presenters
|
|
*/
|
|
class ClientPresenter extends EntityPresenter
|
|
{
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function name()
|
|
{
|
|
return $this->entity->name ?: $this->entity->primary_contact->first()->first_name . ' '. $this->entity->primary_contact->first()->last_name;
|
|
}
|
|
}
|