ria/app/Controllers/Home.php
2024-05-06 03:47:37 +00:00

12 lines
151 B
PHP
Executable File

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