mikael-zakaria 076b8a97ec first commit
2026-04-15 10:31:20 +07:00

12 lines
161 B
PHP

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