atualizacao rankings

This commit is contained in:
gabriellina640
2026-04-17 20:49:49 -05:00
parent f551520161
commit 2245afdb43
6 changed files with 1330 additions and 407 deletions

View File

@@ -14,8 +14,12 @@ use App\Http\Controllers\GameController;
|
*/
Route::prefix('v1')->group(function () {
Route::get('/rankings/general', [GameController::class, 'generalRanking']);
Route::get('/rankings/weekly', [GameController::class, 'weeklyRanking']);
Route::get('/rankings/monthly', [GameController::class, 'monthlyRanking']);
Route::get('/rankings/yearly', [GameController::class, 'yearlyRanking']);
Route::get('/rankings/history/{id}', [GameController::class, 'history']);
Route::get('/games/most-played', [GameController::class, 'mostPlayed']);
Route::get('/rankings/platforms/{platform}', [GameController::class, 'platformRanking']);
});