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:
Rico van Zelst
2024-03-27 01:04:40 +01:00
parent 846925e800
commit 5b55e21659
6 changed files with 67 additions and 4 deletions

View File

@@ -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');