Se avanza en la pagina de inicio, falta los indicadores

This commit is contained in:
2020-05-12 11:07:58 -04:00
parent fbe1e4f7e5
commit 9084ea5edb
39 changed files with 1027 additions and 45 deletions

View File

@ -0,0 +1,4 @@
<?php
use ProVM\KI\Common\Controller\Web\Indicadores;
$app->get('/indicador/{indicador}', [Indicadores::class, 'get']);

View File

@ -0,0 +1,9 @@
<?php
use ProVM\KI\Common\Controller\Web\Proyectos;
$app->group('/proyectos', function($app) {
$app->get('/destacados/{page}', [Proyectos::class, 'destacados']);
});
$app->group('/proyecto/{proyecto}', function($app) {
$app->get('/ficha', [Proyectos::class, 'ficha']);
});