generated from NixLabs/lwaf
13 lines
193 B
PHP
13 lines
193 B
PHP
<?php
|
|
|
|
class HomeController
|
|
{
|
|
public function index()
|
|
{
|
|
Flight::view()->render("home.latte", [
|
|
"name" => "Owen",
|
|
"title" => "Index",
|
|
]);
|
|
}
|
|
}
|