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

@@ -21,4 +21,9 @@ class HomeController extends Controller
'upcomingSkins' => $upcomingSkins,
]);
}
public function support()
{
return view('support');
}
}