feat: champion list

This commit is contained in:
Rico van Zelst
2023-11-07 17:28:37 +01:00
parent 42955bea4f
commit 4445bc1478
14 changed files with 187 additions and 9 deletions

View File

@@ -1,5 +1,6 @@
<?php
use App\Http\Controllers\ChampionController;
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\HomeController;
@@ -15,3 +16,5 @@ use App\Http\Controllers\HomeController;
*/
Route::get('/', [HomeController::class, 'index']);
Route::get('/champions', [ChampionController::class, 'index']);