aboutsummaryrefslogtreecommitdiff
path: root/app/Http/Controllers/PrivacyController.php
diff options
context:
space:
mode:
authorfloppydiskette <floppydisk@hyprcat.net>2024-09-13 22:31:05 +0100
committerfloppydiskette <floppydisk@hyprcat.net>2024-09-13 22:31:05 +0100
commit2204944c1b9154acc5e40e97b00933d5b55e9d57 (patch)
tree9efd283d0ef95f71b36aa3a6a4179fdd477758e2 /app/Http/Controllers/PrivacyController.php
parentd8915dcca4d9752f6f254e86afa39ef7f83617d1 (diff)
Multiple in-progress changes
Diffstat (limited to 'app/Http/Controllers/PrivacyController.php')
-rw-r--r--app/Http/Controllers/PrivacyController.php16
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');
+ }
+}