Files
ui/resources/routes/05_ventas.php

7 lines
291 B
PHP
Raw Normal View History

2022-06-13 21:36:11 -04:00
<?php
$app->group('/ventas', function($app) {
$app->get('/{proyecto_id}', [\Incoviba\UI\Common\Controller\Ventas::class, 'get']);
$app->get('[/]', \Incoviba\UI\Common\Controller\Ventas::class);
});
$app->get('/precios', [\Incoviba\UI\Common\Controller\Precios::class, 'proyectos']);