无法提交具有不同操作的表单(网址)

时间:2018-06-02 04:42:57

标签: laravel forms routes action

我转到domain.com/detail/01

在此页面中,我的表单中的操作为domain.com/view-info/profile/1,方法为POST。但是当我提交表单时,它会显示Sorry, the page you are looking for could not be found. 注意:2个网址不同namespacemiddleware

路线:Route::post('view-info/{$id}', 'EmployersController@viewProfile')->name('view-profile');

1 个答案:

答案 0 :(得分:0)

从路线参数中删除$

Route::post('view-info/{id}', 'EmployersController@viewProfile')->name('view-profile');