This commit is contained in:
2021-03-05 13:00:07 +01:00
parent d2182f5020
commit 93b9411c99
7 changed files with 100 additions and 2 deletions
+4
View File
@@ -19,4 +19,8 @@ class Group extends Eloquent
public function password(){
return $this->hasOne(Password::class);
}
public function vote(){
return $this->hasMany(Vote::class);
}
}