laravel 路由分組
Route::group(['prefix' => 'admin'], function () { $namespacePrefix="\App\Http\Controllers\Admin\"; Route::get('/index', ['uses' => $namespacePrefix . 'IndexController@index', 'as' => 'index']); Route::get('/product',['uses' => $namespacePrefix . 'BusinessProductController@index', 'as' => 'index']); Route::get('/productadd',['uses' => $namespacePrefix . 'BusinessProductController@add', 'as' => 'add']); });