This commit is contained in:
yangsh
2025-12-01 17:54:31 +09:00
commit 40d9e3cc9a
102 changed files with 8896 additions and 0 deletions

15
app/Controllers/Home.php Normal file
View File

@@ -0,0 +1,15 @@
<?php
namespace App\Controllers;
class Home extends BaseController
{
public function index(): string
{
return view('welcome_message');
}
public function hello() : string {
return 'hello111';
}
}