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

@@ -13,7 +13,11 @@ class ChampionController extends Controller
*/
public function index()
{
//
$champions = Champion::orderBy('name')->get();
return view('champions.index', [
'champions' => $champions,
]);
}
/**