John Paul E. Balandan, CPA daf48bbfd5
Add types for app
2023-07-27 12:02:08 +08:00

12 lines
161 B
PHP

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