Files
CHIEFSOFT\ameye eeb11f842e first commit
2025-01-11 10:07:36 -05:00

12 lines
151 B
PHP

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