Files
raby/resources/routes/web/admin/notificacion.php
2020-03-22 17:25:11 -03:00

8 lines
217 B
PHP

<?php
use ProVM\NotariaRaby\Common\Controller\Web\Admin\Notificacion;
$app->group('/notificacion', function($app) {
$app->get('[/]', Notificacion::class);
$app->post('[/]', [Notificacion::class, 'do_edit']);
});