13 lines
384 B
PHP
13 lines
384 B
PHP
<?php
|
|
use Incoviba\API\Common\Controller\Ventas;
|
|
|
|
$app->group('/ventas', function ($app) {
|
|
$app->post('/add[/]', [Ventas::class, 'add']);
|
|
$app->get('[/]', Ventas::class);
|
|
});
|
|
$app->group('/venta/{venta_id}', function ($app) {
|
|
$app->put('/edit[/]', [Ventas::class, 'edit']);
|
|
$app->delete('/edit[/]', [Ventas::class, 'delete']);
|
|
$app->get('[/]', [Ventas::class, 'show']);
|
|
});
|