Merms New Website

This commit is contained in:
Olu Amey
2021-05-19 14:36:02 +00:00
commit 685a80769d
288 changed files with 86164 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<?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);
}
//--------------------------------------------------------------------
}