Files
oficial/app/resources/routes/ventas/promotions.php

7 lines
139 B
PHP
Raw Normal View History

2025-03-18 19:12:59 -03:00
<?php
use Incoviba\Controller\Ventas\Promotions;
$app->group('/promotions', function($app) {
$app->get('[/]', Promotions::class);
});