23 lines
752 B
PHP
23 lines
752 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
use App\Http\Controllers\GameController;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| API Routes
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
|
|
Route::prefix('v1')->middleware(['jwt.auth'])->group(function () {
|
|
|
|
// Rankings
|
|
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']);
|
|
|
|
// Jogos
|
|
Route::get('/games/most-played', [GameController::class, 'mostPlayed']);
|
|
});
|