belongsTo('Account');
}
public function invoices()
{
return $this->hasMany('Invoice');
}
public function contacts()
{
return $this->hasMany('Contact');
}
public function getAddress()
{
$str = '';
if ($this->address1) {
$str .= $this->address1 . '
';
}
if ($this->address2) {
$str .= $this->address2 . '
';
}
if ($this->city) {
$str .= $this->city . ', ';
}
if ($this->state) {
$str .= $this->state . ' ';
}
if ($this->postal_code) {
$str .= $this->postal_code;
}
if ($str)
{
$str = '
' . $str . '
'; } return $str; } public function getPhone() { $str = ''; if ($this->work_phone) { $str .= '' . $this->work_phone; } return $str; } public function getNotes() { $str = ''; if ($this->notes) { $str .= '' . $this->notes . ''; } return $str; } } Client::created(function($client) { Activity::createClient($client); });