Files
api/resources/routes/ventas.php

13 lines
384 B
PHP
Raw Normal View History

2021-11-30 18:04:41 -03:00
<?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']);
});