7 lines
175 B
PHP
7 lines
175 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
Route::group(['middleware' => 'web', 'prefix' => 'test', 'namespace' => 'Modules\Test\Http\Controllers'], function()
|
||
|
|
{
|
||
|
|
Route::get('/', 'TestController@index');
|
||
|
|
});
|