1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Models/Presenters/ClientPresenter.php

98 lines
2.4 KiB
PHP
Raw Normal View History

<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Models\Presenters;
2019-01-27 00:22:57 +01:00
/**
* Class ClientPresenter
* @package App\Models\Presenters
*/
class ClientPresenter extends EntityPresenter
{
2019-01-27 00:22:57 +01:00
/**
* @return string
*/
public function name()
{
2019-10-02 12:22:10 +02:00
$contact = $this->entity->primary_contact->first();
$contact_name = 'No Contact Set';
if($contact)
$contact_name = $contact->first_name. ' '. $contact->last_name;
return $this->entity->name ?: $contact_name;
}
2019-08-21 06:29:07 +02:00
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';
}
2019-08-21 06:29:07 +02:00
public function address()
{
$str = '';
$client = $this->entity;
if ($address1 = $client->address1) {
$str .= e($address1) . '<br/>';
}
if ($address2 = $client->address2) {
$str .= e($address2) . '<br/>';
}
if ($cityState = $this->getCityState()) {
$str .= e($cityState) . '<br/>';
}
if ($country = $client->country) {
$str .= e($country->name) . '<br/>';
}
return $str;
}
2019-08-29 06:58:04 +02:00
public function shipping_address()
{
$str = '';
$client = $this->entity;
if ($address1 = $client->shipping_address1) {
$str .= e($address1) . '<br/>';
}
if ($address2 = $client->shipping_address2) {
$str .= e($address2) . '<br/>';
}
if ($cityState = $this->getCityState()) {
$str .= e($cityState) . '<br/>';
}
if ($country = $client->country) {
$str .= e($country->name) . '<br/>';
}
return $str;
}
public function phone()
{
return $this->entity->phone ?: '';
}
2019-08-21 06:29:07 +02:00
public function website()
{
return $this->entity->website ?: '';
}
}