Estudiando como implementar subfolders

This commit is contained in:
Jaime Jimenez
2023-04-27 21:53:41 +02:00
parent c1bef7a7ed
commit 688642f5ea
6 changed files with 100 additions and 57 deletions

View File

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