2025-05-28 14:26:49 +09:00

12 lines
157 B
PHP

<?php
namespace App\Controllers;
class Home extends BaseController
{
public function index(): string
{
return $this->view('home');
}
}