Venta->Listado->Cierres

This commit is contained in:
Juan Pablo Vial
2023-07-25 17:03:57 -04:00
parent 1a7b10ce3c
commit 43cd955061
12 changed files with 596 additions and 5 deletions

View File

@ -0,0 +1,6 @@
<?php
use Incoviba\Controller\Ventas\Cierres;
$app->group('/cierres', function($app) {
$app->post('[/]', [Cierres::class, 'proyecto']);
});