mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
24 lines
608 B
PHP
24 lines
608 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
class TermsController extends BasePageController
|
|
{
|
|
/**
|
|
* @throws \Exception
|
|
*/
|
|
public function terms(): void
|
|
{
|
|
$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');
|
|
|
|
$content = $this->smarty->fetch('terms.tpl');
|
|
|
|
$this->smarty->assign(compact('title', 'content', 'meta_title', 'meta_keywords', 'meta_description'));
|
|
|
|
$this->pagerender();
|
|
}
|
|
}
|