Files
contabilidad/api/resources/routes/workers.php

7 lines
153 B
PHP
Raw Normal View History

2021-07-27 22:29:56 -04:00
<?php
use Contabilidad\Common\Controller\Workers;
$app->group('/workers', function($app) {
$app->post('/register', [Workers::class, 'register']);
});