Files
oficial/app/resources/routes/ventas/promotions.php
Juan Pablo Vial b191a01313 Promociones
2025-03-25 19:22:38 -03:00

10 lines
252 B
PHP

<?php
use Incoviba\Controller\Ventas\Promotions;
$app->group('/promotions', function($app) {
$app->get('[/]', Promotions::class);
});
$app->group('/promotion/{promotion_id}', function($app) {
$app->get('[/]', [Promotions::class, 'show']);
});