mirror of
https://gh.wpcy.net/https://github.com/aiiddqd/AppCustom.git
synced 2026-07-16 17:38:36 +08:00
6 lines
211 B
PHP
6 lines
211 B
PHP
<?php
|
|
|
|
Route::group(['middleware' => 'web', 'prefix' => \Helper::getSubdirectory(), 'namespace' => 'Modules\AppCustom\Http\Controllers'], function()
|
|
{
|
|
Route::get('/custom', 'AppCustomController@index');
|
|
});
|