我具有自定义的中间件,并希望使用类似此代码的路由
Route::middleware('custom ')->view('welcome');
在web.php中使用Illuminate \ Support \ Facades \ Route并添加代码,但出现此错误
在RouteRegistrar.php第196行:
方法Illuminate \ Routing \ RouteRegistrar :: view不存在。
并尝试使用Illuminate \ Routing \ Route,这会显示此错误
在web.php第17行中:
非静态方法Illuminate \ Routing \ Route :: middleware()不应 被称为静态
答案 0 :(得分:0)
路线为Illuminate\Support\Facades\Route
// first parameter is a 'uri'
// second paramete is the 'view'
// there is an optional third parameter to pass data to the view as an array
Route::view('welcome', 'welcome')->middleware('custom');