laravel的路由可以不使用中间件么,我新建routes/wechat.php
protected function mapWechatRoutes()
{
Route::group([
'namespace' => 'App\Http\Controllers\Wechat',
'prefix' => 'wechat',
'middleware' => ''
], function ($router) {
require base_path('routes/wechat.php');
});
}
为啥我这样,使用get,会不能访问呢