v0.8.0-rc
This commit is contained in:
@ -2,6 +2,5 @@
|
||||
use ProVM\NotariaRaby\Common\Controller\Web\Admin\Notificacion;
|
||||
|
||||
$app->group('/notificacion', function($app) {
|
||||
$app->get('[/]', Notificacion::class);
|
||||
$app->post('[/]', [Notificacion::class, 'do_edit']);
|
||||
});
|
||||
|
6
resources/routes/web/admin/transparencia.php
Normal file
6
resources/routes/web/admin/transparencia.php
Normal file
@ -0,0 +1,6 @@
|
||||
<?php
|
||||
use ProVM\NotariaRaby\Common\Controller\Web\Admin\Transparencia;
|
||||
|
||||
$app->group('/transparencia', function($app) {
|
||||
$app->post('[/]', [Transparencia::class, 'do_edit']);
|
||||
});
|
@ -2,5 +2,6 @@
|
||||
use ProVM\NotariaRaby\Common\Controller\Web\Contacto;
|
||||
|
||||
$app->group('/contacto', function($app) {
|
||||
$app->post('[/]', [Contacto::class, 'formulario']);
|
||||
$app->get('[/]', Contacto::class);
|
||||
});
|
||||
|
Reference in New Issue
Block a user