Laravel 5.1を5.3にアップグレードし、ルートに問題があります。Laravel 5.3 RESTのないRoute ::リソース
getIndex($type)
postIndex($type, Request $request)
getAdd($type)
postAdd(Request $request)
getEdit($type, $id)
postEdit(Request $request, $id) and others...
しかし、5.3で私が作成したルート:
Route::resource('pages/{page_type}', 'Admin\AdminPagesController');
I Iのようなメソッドを持って
Route::controllers([
'pages/{page_type}' => 'Admin\AdminPagesController',
]);
とコントローラで:
Laravel 5.1では私はルートのように持っていますエラーが発生しました
NotFoundHttpException in RouteCollection.php line 161:
または
Route pattern "/master/pages/{page_type}/{{page_type}}" cannot reference variable name "page_type" more than once.
、それはRESTfulな
に私にルートを生成誰も私を助けることができますか?
ありがとうございました。