Files
OluAmeyeMain/app/Controllers/Home.php
T
CHIEFSOFT\ameye 5e08671cbe first commit
2024-08-26 12:42:47 -04:00

12 lines
155 B
PHP

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