Files
oficial/app/resources/routes/api/ventas/precios.php

12 lines
311 B
PHP
Raw Normal View History

<?php
2023-10-20 19:03:29 -03:00
use Incoviba\Controller\API\Ventas\Precios;
$app->group('/precios', function($app) {
$app->post('[/]', [Precios::class, 'proyecto']);
});
2023-07-28 16:22:20 -04:00
$app->group('/precio', function($app) {
$app->group('/unidad/{unidad_id}', function($app) {
$app->get('[/]', [Precios::class, 'unidad']);
});
});