AppCustom/Http/routes.php
Anatoly Yumashev b3f1227f4e
new version
2023-01-23 15:20:08 +03:00

6 lines
211 B
PHP

<?php
Route::group(['middleware' => 'web', 'prefix' => \Helper::getSubdirectory(), 'namespace' => 'Modules\AppCustom\Http\Controllers'], function()
{
Route::get('/custom', 'AppCustomController@index');
});