Files
LookingGlass/app/controllers/HomeController.php
2025-07-29 22:47:42 +00:00

13 lines
193 B
PHP

<?php
class HomeController
{
public function index()
{
Flight::view()->render("home.latte", [
"name" => "Owen",
"title" => "Index",
]);
}
}