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

@@ -26,4 +26,9 @@ class HomeController extends Controller
{
return view('support');
}
public function roadmap()
{
return view('roadmap');
}
}