Files
raby/resources/routes/web/contacto.php

8 lines
198 B
PHP
Raw Normal View History

2020-02-27 23:02:24 -03:00
<?php
use ProVM\NotariaRaby\Common\Controller\Web\Contacto;
$app->group('/contacto', function($app) {
2020-03-27 02:59:53 -03:00
$app->post('[/]', [Contacto::class, 'formulario']);
2020-02-27 23:02:24 -03:00
$app->get('[/]', Contacto::class);
});