mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 10:10:48 +01:00
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:
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user