feat: Change support to donate and views

- Changed method name from support to donate in HomeController
- Updated footer link and view references from support to donate
- Renamed support.blade.php to donate.blade.php for consistency
- Updated route endpoint from /support-me to /donate in web.php
This commit is contained in:
Rico van Zelst
2024-06-18 12:31:08 +02:00
parent 2f49bb3b88
commit f01703830d
4 changed files with 6 additions and 6 deletions

View File

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