Files
MermsWebsite2021/app/Controllers/Land.php
T
2021-05-19 14:36:02 +00:00

19 lines
365 B
PHP

<?php
namespace App\Controllers;
class Land extends BaseController {
public function index() {
$data = array();
$this->renderExtPage('terms', $data);
}
public function covit() {
$data = array();
$this->renderExtPage('covit', $data);
}
//--------------------------------------------------------------------
}