VanguardAI/app/Controllers/HomeController.php
2024-10-27 12:50:51 -06:00

12 lines
162 B
PHP

<?php
namespace App\Controllers;
class HomeController extends ViewController
{
public function showHome()
{
$this->render('home/home');
}
}