Files
safekat/ci4/app/Controllers/Logistica/Logistica.php
2023-05-02 07:59:52 +02:00

22 lines
251 B
PHP

<?php
namespace App\Controllers\Logistica;
use App\Controllers\BaseController;
class Logistica extends BaseController
{
function __construct()
{
}
public function index()
{
echo 'Hola2';
}
}