Files
Olu Amey e31ec12675 fix
2022-03-15 10:06:54 -04: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('contact', $data);
}
//--------------------------------------------------------------------
}