X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=app%2FModels%2FResult.php;fp=app%2FModels%2FResult.php;h=e693fc7de5d510783d7a0ea24ecfa4d326ce9bc9;hb=55f2d7cd6c290a0d26db177d54d20c393f890bbb;hp=0000000000000000000000000000000000000000;hpb=f642f1eda2a68ad5e09b71ccdae1499bc9d31e4f;p=alttp.git diff --git a/app/Models/Result.php b/app/Models/Result.php new file mode 100644 index 0000000..e693fc7 --- /dev/null +++ b/app/Models/Result.php @@ -0,0 +1,20 @@ +belongsTo(Round::class); + } + + public function participant() { + return $this->belongsTo(Participant::class); + } + +}