7 lines
145 B
PHP
7 lines
145 B
PHP
<?php
|
|
use Incoviba\Controller\Ventas\Cierres;
|
|
|
|
$app->group('/cierres', function($app) {
|
|
$app->post('[/]', [Cierres::class, 'proyecto']);
|
|
});
|