UI incompleto
This commit is contained in:
4
ui/resources/routes/bancos.php
Normal file
4
ui/resources/routes/bancos.php
Normal file
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
use Contabilidad\Common\Controller\Bancos;
|
||||
|
||||
$app->get('/bancos/add', [Bancos::class, 'add']);
|
4
ui/resources/routes/categorias.php
Normal file
4
ui/resources/routes/categorias.php
Normal file
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
use Contabilidad\Common\Controller\Categorias;
|
||||
|
||||
$app->get('/categorias', Categorias::class);
|
4
ui/resources/routes/cuentas.php
Normal file
4
ui/resources/routes/cuentas.php
Normal file
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
use Contabilidad\Common\Controller\Cuentas;
|
||||
|
||||
$app->get('/cuentas', Cuentas::class);
|
4
ui/resources/routes/fuentes.php
Normal file
4
ui/resources/routes/fuentes.php
Normal file
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
use Contabilidad\Common\Controller\Fuentes;
|
||||
|
||||
$app->get('/fuente/{fuente_id}', [Fuentes::class, 'show']);
|
4
ui/resources/routes/home.php
Normal file
4
ui/resources/routes/home.php
Normal file
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
use Contabilidad\Common\Controller\Home;
|
||||
|
||||
$app->get('[/]', Home::class);
|
4
ui/resources/routes/tipos_fuentes.php
Normal file
4
ui/resources/routes/tipos_fuentes.php
Normal file
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
use Contabilidad\Common\Controller\TiposFuentes;
|
||||
|
||||
$app->get('/tipos_fuentes/add', [TiposFuentes::class, 'add']);
|
Reference in New Issue
Block a user