我在routes.php文件中定義這個命名路線,Laravel 5命名路由錯誤
Route::get('/', [
'as' => 'home',
'uses' => '[email protected]'
]);
然後我有這個在我的PagesController.php
public function home() {
return 'Welcome home!';
}
我的問題是,爲什麼http://localhost:8000/home產生這個錯誤?
NotFoundHttpException in RouteCollection.php line 161:
請參閱本文檔,它將很好地解釋路由概念[鏈接](https://laravel.com/docs/5.2/routing#named-routes) – Kalanka