Add privacy page
This commit is contained in:
parent
f00947d721
commit
f3694af95e
3 changed files with 44 additions and 0 deletions
16
app/Http/Controllers/PrivacyController.php
Normal file
16
app/Http/Controllers/PrivacyController.php
Normal 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');
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue