branch modified

This commit is contained in:
yangsh
2025-12-02 10:56:57 +09:00
parent b8920315df
commit 9993465da9
39 changed files with 9487 additions and 0 deletions

17
app/Controllers/Main.php Normal file
View File

@@ -0,0 +1,17 @@
<?php
namespace App\Controllers;
use mysqli;
class Main extends BaseController
{
function __construct() {
}
public function dashboard() : string
{
return view('pages/dashboard');
}
}