entity->name ?: $this->entity->primary_contact->first()->first_name . ' '. $this->entity->primary_contact->first()->last_name; } public function address() { $str = ''; $client = $this->entity; if ($address1 = $client->address1) { $str .= e($address1) . '
'; } if ($address2 = $client->address2) { $str .= e($address2) . '
'; } if ($cityState = $this->getCityState()) { $str .= e($cityState) . '
'; } if ($country = $client->country) { $str .= e($country->name) . '
'; } return $str; } }