Update terms and conditions handling

This commit is contained in:
DariusIII
2026-01-27 11:54:21 +01:00
parent ac50d5b5da
commit 863a71e6fc
3 changed files with 79 additions and 74 deletions
+1 -4
View File
@@ -16,9 +16,6 @@ class TermsController extends BasePageController
$meta_keywords = 'terms,conditions';
$meta_description = 'Terms and Conditions for '.config('app.name');
// Get terms content from settings
$terms_content = $this->settings->get('tandc') ?? '<p>No terms and conditions have been set yet.</p>';
return view('terms', compact('title', 'meta_title', 'meta_keywords', 'meta_description', 'terms_content'));
return view('terms', compact('title', 'meta_title', 'meta_keywords', 'meta_description'));
}
}