]> git.localhorst.tv Git - alttp.git/blob - app/Models/Result.php
result reporting
[alttp.git] / app / Models / Result.php
1 <?php
2
3 namespace App\Models;
4
5 use Illuminate\Database\Eloquent\Factories\HasFactory;
6 use Illuminate\Database\Eloquent\Model;
7
8 class Result extends Model
9 {
10         use HasFactory;
11
12         public function round() {
13                 return $this->belongsTo(Round::class);
14         }
15
16         public function participant() {
17                 return $this->belongsTo(Participant::class);
18         }
19
20         protected $fillable = [
21                 'round_id',
22                 'time',
23                 'user_id',
24         ];
25
26 }