Files
Olu Amey fda389fdcb fix
2021-06-18 23:27:20 +00:00

19 lines
367 B
PHP

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