diff options
author | floppydiskette <floppydisk@hyprcat.net> | 2024-10-06 04:11:08 +0100 |
---|---|---|
committer | floppydiskette <floppydisk@hyprcat.net> | 2024-10-06 04:11:08 +0100 |
commit | f3694af95eba7bab3e27f1b44d5c134f3b2e931b (patch) | |
tree | e920dc8975c9ae170d5c4f856ecb679141c700e5 /app | |
parent | f00947d7214b19a9b96081afd5644b71226f9e91 (diff) |
Add privacy page
Diffstat (limited to 'app')
-rw-r--r-- | app/Http/Controllers/PrivacyController.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app/Http/Controllers/PrivacyController.php b/app/Http/Controllers/PrivacyController.php new file mode 100644 index 0000000..277bf35 --- /dev/null +++ b/app/Http/Controllers/PrivacyController.php @@ -0,0 +1,16 @@ +<?php + +namespace App\Http\Controllers; + +use Illuminate\Http\Request; +use Illuminate\View\View; + +class PrivacyController extends Controller{ + /** + * Shows the page + * @return View + */ + public function show(): View { + return view('privacy'); + } +} |