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