feat: skin list

This commit is contained in:
Rico van Zelst
2023-11-09 12:20:46 +01:00
parent 70306245e6
commit 2b8e6d9327
17 changed files with 582 additions and 4 deletions

View File

@@ -3,6 +3,7 @@
use App\Http\Controllers\ChampionController;
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\HomeController;
use App\Http\Controllers\ChampionSkinController;
/*
|--------------------------------------------------------------------------
@@ -17,5 +18,8 @@ use App\Http\Controllers\HomeController;
Route::get('/', [HomeController::class, 'index']);
// Champions
Route::get('/champions', [ChampionController::class, 'index']);
Route::get('/champion/{champion}', [ChampionController::class, 'show']);
// Skins
Route::get('/skins', [ChampionSkinController::class, 'index']);