'integer', ]; public function video(): BelongsTo { return $this->belongsTo(Video::class); } public function points(): HasMany { return $this->hasMany(MatchPoint::class, 'match_round_id')->orderBy('timestamp_seconds'); } }