App\Transformers\BeatmapTransformer::includeScoresBest PHP Method

includeScoresBest() public method

public includeScoresBest ( Beatmap $beatmap )
$beatmap app\models\Beatmap
    public function includeScoresBest(Beatmap $beatmap)
    {
        $scores = $beatmap->scoresBest()->defaultListing()->limit(config('osu.beatmaps.max-scores'))->get();
        return $this->collection($scores, new ScoreTransformer());
    }