mirror of
https://gh.wpcy.net/https://github.com/itk-dev/freescout-itk-issue-create.git
synced 2026-05-07 13:57:15 +08:00
9 lines
224 B
PHP
9 lines
224 B
PHP
<?php
|
|
|
|
Route::group([
|
|
'middleware' => 'web',
|
|
'prefix' => \Helper::getSubdirectory(),
|
|
'namespace' => 'Modules\ItkIssueCreate\Http\Controllers'
|
|
], function () {
|
|
Route::get('/', 'ItkIssueCreateController@index');
|
|
});
|