belongsTo('App\Models\Group'); } public function notifications() { return $this->hasMany('App\Models\Notification'); } public function contacts() { return $this->belongsToMany('App\Models\Contact'); } public function history() { return $this->hasMany('App\Models\TaskHistory'); } }