mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 20:01:29 +00:00
24 lines
584 B
PHP
24 lines
584 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\View\View;
|
|
|
|
class TermsController extends BasePageController
|
|
{
|
|
/**
|
|
* Display the terms and conditions page.
|
|
*/
|
|
public function terms(): View
|
|
{
|
|
$title = 'Terms and Conditions';
|
|
$meta_title = config('app.name').' - Terms and conditions';
|
|
$meta_keywords = 'terms,conditions';
|
|
$meta_description = 'Terms and Conditions for '.config('app.name');
|
|
|
|
return view('terms', compact('title', 'meta_title', 'meta_keywords', 'meta_description'));
|
|
}
|
|
}
|