entity->name) {
            return $this->entity->name;
        }
        $contact = $this->entity->primary_contact->first();
        $contact_name = 'No Contact Set';
        if ($contact && (strlen($contact->first_name) >= 1 || strlen($contact->last_name) >= 1)) {
            $contact_name = $contact->first_name.' '.$contact->last_name;
        } elseif ($contact && (strlen($contact->email))) {
            $contact_name = $contact->email;
        }
        return $contact_name;
    }
    public function primary_contact_name()
    {
        return $this->entity->primary_contact->first() !== null ? $this->entity->primary_contact->first()->first_name.' '.$this->entity->primary_contact->first()->last_name : 'No primary contact set';
    }
    public function email()
    {
        return $this->entity->primary_contact->first() !== null ? $this->entity->primary_contact->first()->email : 'No Email Set';
    }
    public function address()
    {
        $str = '';
        $vendor = $this->entity;
        if ($address1 = $vendor->address1) {
            $str .= e($address1).'
';
        }
        if ($address2 = $vendor->address2) {
            $str .= e($address2).'
';
        }
        if ($cityState = $this->getCityState()) {
            $str .= e($cityState).'
';
        }
        if ($country = $vendor->country) {
            $str .= e($country->name).'
';
        }
        return $str;
    }
    public function shipping_address()
    {
        $str = '';
        $vendor = $this->entity;
        if ($address1 = $vendor->shipping_address1) {
            $str .= e($address1).'
';
        }
        if ($address2 = $vendor->shipping_address2) {
            $str .= e($address2).'
';
        }
        if ($cityState = $this->getCityState()) {
            $str .= e($cityState).'
';
        }
        if ($country = $vendor->country) {
            $str .= e($country->name).'
';
        }
        return $str;
    }
    public function phone()
    {
        return $this->entity->phone ?: '';
    }
    public function website()
    {
        return $this->entity->website ?: '';
    }
    /**
     * Calculated company data fields
     * using settings.
     */
    public function company_name()
    {
        $settings = $this->entity->company->settings;
        return $settings->name ?: ctrans('texts.untitled_account');
    }
    public function company_address()
    {
        $settings = $this->entity->company->settings;
        $str = '';
        if ($settings->address1) {
            $str .= e($settings->address1).'
';
        }
        if ($settings->address2) {
            $str .= e($settings->address2).'
';
        }
        if ($cityState = $this->getCityState()) {
            $str .= e($cityState).'
';
        }
        if ($country = Country::find($settings->country_id)) {
            $str .= e($country->name).'
';
        }
        return $str;
    }
    public function getCityState()
    {
        $settings = $this->entity->company->settings;
        $country = false;
        if ($settings->country_id) {
            $country = Country::find($settings->country_id);
        }
        $swap = $country && $country->swap_postal_code;
        $city = e($settings->city ?: '');
        $state = e($settings->state ?: '');
        $postalCode = e($settings->postal_code ?: '');
        if ($city || $state || $postalCode) {
            return $this->cityStateZip($city, $state, $postalCode, $swap);
        } else {
            return false;
        }
    }
}