44 lines
820 B
PHP
44 lines
820 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* A relationship defines relations between contacts.
|
|
*/
|
|
class Relationship extends Model
|
|
{
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'account_id',
|
|
'contact_id',
|
|
'with_contact_id',
|
|
'is_active',
|
|
];
|
|
|
|
public function account()
|
|
{
|
|
return $this->belongsTo(Account::class);
|
|
}
|
|
|
|
public function contactIs()
|
|
{
|
|
return $this->belongsTo(Contact::class, 'contact_is');
|
|
}
|
|
|
|
public function ofContact()
|
|
{
|
|
return $this->belongsTo(Contact::class, 'of_contact');
|
|
}
|
|
|
|
public function relationshipType()
|
|
{
|
|
return $this->belongsTo('App\RelationshipType', 'relationship_type_id');
|
|
}
|
|
}
|