Files
project/resources/routes/web/create.php

9 lines
227 B
PHP

<?php
use ProVM\Projects\Common\Controller\Web\Create;
$app->group('/create', function($app) {
$app->post('/2', [Create::class, 'step2']);
$app->post('/3', [Create::class, 'step3']);
$app->get('[/]', Create::class);
});