Zona admin

This commit is contained in:
2020-05-26 23:04:49 -04:00
parent d0aba43371
commit 31f308f5c7
26 changed files with 1291 additions and 1 deletions

View File

@ -0,0 +1,7 @@
<?php
use ProVM\KI\Common\Controller\Web\Admin\Nosotros;
$app->group('/nosotros', function($app) {
$app->post('[/]', [Nosotros::class, 'guardar']);
$app->get('[/]', Nosotros::class);
});