diff options
Diffstat (limited to 'app/Http/Controllers/PrivacyController.php')
-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'); + } +} |