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

10 lines
252 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);
});
2025-03-25 19:22:38 -03:00
$app->group('/promotion/{promotion_id}', function($app) {
$app->get('[/]', [Promotions::class, 'show']);
});