Laravel新手在這裏,我想創建一個Laravel更新路線,沒有資源控制器。 我有路線編輯Laravel更新路線
Route::get('/indexedit','[email protected]')->middleware('user');
,並在那裏,有一個與以下
<form class="col s12" method="POST" action="indexedit/{{ $val->id }}" >
{{ method_field('PUT') }}
{{ csrf_field() }}
形式有兩種輸入字段和submiting按鈕。我創建了一個更新的路線是
Route::post('indexedit/{$id}', '[email protected]');
但是,當我提交,它說Route找不到。 NotFoundHttpException在RouteCollection.php線161:
Route :: any('/ indexedit/{id}','PagesController @ update');試試吧.. – Sona
剛試過,返回相同。 –