Reworked how test results get submitted

This commit is contained in:
Gregory Ballantine
2024-06-03 10:36:18 -04:00
parent de8e523c2c
commit 05b1374d1d
8 changed files with 56 additions and 123 deletions

View File

@ -17,4 +17,12 @@ class Result extends Model {
return $this->belongsTo(Test::class);
}
}
public function component() {
return $this->belongsTo(Component::class):
}
public function benchmark() {
return $this->belongsTo(Benchmark::class);
}
}