Files
CHIEFSOFT\ameye d8803c565f first commit
2024-10-12 21:13:21 -04:00

12 lines
150 B
PHP

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