aboutsummaryrefslogtreecommitdiff
path: root/app/Http/Controllers
diff options
context:
space:
mode:
Diffstat (limited to 'app/Http/Controllers')
-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');
+ }
+}