X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=app%2FModels%2FUser.php;h=ad5215f064acc5407b2d1bc48664c549c3e41fbb;hb=dc004b57a3d95d29dbf8a06a07df43f603eec6be;hp=201361e68534eb869f94a1c3e50dc61140552a6b;hpb=8f82545b35219e093ea60e304699b61fb63966f2;p=alttp.git diff --git a/app/Models/User.php b/app/Models/User.php index 201361e..ad5215f 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -115,6 +115,10 @@ class User extends Authenticatable } + public function channel_crews() { + return $this->hasMany(ChannelCrew::class); + } + public function participation() { return $this->hasMany(Participant::class); }