getFullName()) { return $this->getFullName(); } elseif ($this->email) { return $this->email; } else { return trans('texts.guest'); } } /** * @return string */ public function getFullName() { if ($this->first_name || $this->last_name) { return $this->first_name.' '.$this->last_name; } else { return ''; } } }