Fixed key word error

This commit is contained in:
neerholt
2021-03-05 10:52:42 +01:00
parent dd66573508
commit e1e879e94b
5 changed files with 44 additions and 12 deletions
@@ -8,7 +8,7 @@ class KeyWord extends Eloquent{
public function group(){
return $this->hasOne(Group::class);
return $this->belongsTo(Group::class);
}
}