Files
TokslawMain/app/Controllers/Project.php
T
2025-08-08 16:30:23 -04:00

13 lines
157 B
PHP

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