7 lines
151 B
PHP
7 lines
151 B
PHP
![]() |
<?php
|
||
|
use Incoviba\Controller\API\Ventas\Facturas;
|
||
|
|
||
|
$app->group('/facturas', function($app) {
|
||
|
$app->post('/add[/]', [Facturas::class, 'add']);
|
||
|
});
|