mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
1ad857bac9
* client ui * Paddin out client detail view * Padding out clients * Padding out clients * show maps * Padding out clients * fixes for migrations * client padding * Working on different Client UX * more client ux * New Client UI * Vue Scaffolding
13 lines
280 B
PHP
13 lines
280 B
PHP
<?php
|
|
|
|
namespace App\Models\Presenters;
|
|
|
|
class ClientPresenter extends EntityPresenter
|
|
{
|
|
|
|
public function name()
|
|
{
|
|
return $this->entity->name ?: $this->entity->primary_contact->first()->first_name . ' '. $this->entity->primary_contact->first()->last_name;
|
|
}
|
|
}
|