feat: Add roadmap functionality

- Added a new method `roadmap` to HomeController for displaying the roadmap view.
- Created a new Blade template `roadmap.blade.php` for the roadmap page.
- Defined a route `/roadmap` to access the roadmap feature.
This commit is contained in:
Rico van Zelst
2024-03-31 20:33:23 +02:00
parent 2b9fd26b7e
commit 821c0d1c3c
4 changed files with 44 additions and 0 deletions

View File

@@ -35,6 +35,8 @@ Route::get('/', static fn () => (new HomeController())->index())->name('home');
Route::get('/support-me', static fn () => (new HomeController())->support())->name('support');
Route::get('/roadmap', static fn () => (new HomeController())->roadmap())->name('roadmap');
// Champions
Route::get('/champions', static fn () => (new ChampionController())->index())->name('champions.index');
Route::get('/champion/{champion}', static fn (Champion $champion) => (new ChampionController())->show($champion))->name('champions.show');