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

7 lines
151 B
PHP
Raw Normal View History

2024-06-18 22:41:03 -04:00
<?php
use Incoviba\Controller\API\Ventas\Facturas;
$app->group('/facturas', function($app) {
$app->post('/add[/]', [Facturas::class, 'add']);
});