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

7 lines
144 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) {
$app->get('[/]', Contacto::class);
});