scoresBest() public method

public scoresBest ( $mode = null )
Ejemplo n.º 1
0
 public function includeScoresBest(Beatmap $beatmap)
 {
     $scores = $beatmap->scoresBest()->defaultListing()->limit(config('osu.beatmaps.max-scores'))->get();
     return $this->collection($scores, new ScoreTransformer());
 }