Files
safekat/ci4/app/Controllers/Envioslogistica/Logistica.php
2023-05-03 21:15:18 +02:00

22 lines
261 B
PHP

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