Creando Menu_impresion

This commit is contained in:
imnavajas
2023-06-02 14:45:12 +02:00
parent 3932da5b84
commit cdb0b29003
18 changed files with 963 additions and 63 deletions

View File

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