我转到domain.com/detail/01
在此页面中,我的表单中的操作为domain.com/view-info/profile/1
,方法为POST
。但是当我提交表单时,它会显示Sorry, the page you are looking for could not be found.
注意:2个网址不同namespace
和middleware
。
路线:Route::post('view-info/{$id}', 'EmployersController@viewProfile')->name('view-profile');
答案 0 :(得分:0)
从路线参数中删除$
:
Route::post('view-info/{id}', 'EmployersController@viewProfile')->name('view-profile');