Files
raby/resources/routes/web/contacto.php
2020-03-27 03:00:59 -03:00

8 lines
198 B
PHP

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