Files
safekat/ci4/app/Controllers/Test.php
2023-09-20 14:28:42 +02:00

22 lines
277 B
PHP

<?php
namespace App\Controllers;
use App\Services\PresupuestoService;
class Test extends BaseController
{
function __construct()
{
}
public function index()
{
$text = PresupuestoService::example();
echo $text;
}
}