Implemented repository mapper, and venta show
This commit is contained in:
7
app/resources/routes/api/ventas/pagos.php
Normal file
7
app/resources/routes/api/ventas/pagos.php
Normal file
@ -0,0 +1,7 @@
|
||||
<?php
|
||||
use Incoviba\Controller\Ventas\Pagos;
|
||||
|
||||
$app->group('/pago/{pago_id:[0-9]+}', function($app) {
|
||||
$app->put('/depositar[/]', [Pagos::class, 'depositar']);
|
||||
$app->put('/abonar[/]', [Pagos::class, 'abonar']);
|
||||
});
|
Reference in New Issue
Block a user