mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 10:10:48 +01:00
feat: Add support page
- Added a new method in HomeController to handle the support page. - Created a new blade template for the support page with donation options.
This commit is contained in:
@@ -33,6 +33,8 @@ use Spatie\Sheets\Sheet;
|
||||
|
||||
Route::get('/', static fn () => (new HomeController())->index())->name('home');
|
||||
|
||||
Route::get('/support-me', static fn () => (new HomeController())->support())->name('support');
|
||||
|
||||
// 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