Files
MermsWebsite2021/app/Controllers/Support.php
T
Olu Amey fda389fdcb fix
2021-06-18 23:27:20 +00:00

15 lines
314 B
PHP

<?php
namespace App\Controllers;
class Support extends BaseController {
public function index() {
$data = array();
$data["country"] = MERMS_COUNTRIES;
$this->renderExtPage('support', $data);
}
//--------------------------------------------------------------------
}