Add privacy page

This commit is contained in:
floppydiskette 2024-10-06 04:11:08 +01:00
commit f3694af95e
3 changed files with 44 additions and 0 deletions

View file

@ -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');
}
}