invoiceninja/app/Models/Traits/AccountTrait.php
2018-10-15 23:40:34 +11:00

18 lines
269 B
PHP

<?php
namespace App\Models\Traits;
trait AccountTrait
{
public function getDisplayName()
{
if ($this->name) {
return $this->name;
}
$user = $this->users()->first();
return $user->getDisplayName();
}
}