Empezando a trabajar en menus

This commit is contained in:
Jaime Jiménez
2023-04-29 11:26:41 +02:00
parent 688642f5ea
commit 59c05ee5fd
6 changed files with 150 additions and 44 deletions

View File

@ -0,0 +1,20 @@
<?php
namespace App\Controllers\Impresion;
use App\Controllers\BaseController;
class Impresioncliente extends BaseController
{
function __construct()
{
}
public function index()
{
echo 'Hola2';
}
}