13 lines
415 B
PHP
13 lines
415 B
PHP
<?php
|
|
use Contabilidad\Common\Controller\TiposCuentas;
|
|
|
|
$app->group('/cuentas', function($app) {
|
|
$app->post('/add[/]', [TiposCuentas::class, 'add']);
|
|
$app->get('[/]', TiposCuentas::class);
|
|
});
|
|
$app->group('/cuenta/{tipo_id}', function($app) {
|
|
$app->put('/edit', [TiposCuentas::class, 'edit']);
|
|
$app->delete('/delete', [TiposCuentas::class, 'delete']);
|
|
$app->get('[/]', [TiposCuentas::class, 'show']);
|
|
});
|