晚安,我正在使用一条新的laravel路线,但是当我尝试放置href时,它会抛出我 路由[/ profileUpdate / update]未定义错误。
web.php路由:
Route::post('/profileUpdate/update', 'ProfileController@updateProfile')->name('profile.update');
profilePage.blade.php代码:
<button type="button" class="btn btn-info"href="{{ route('/profileUpdate/update') }}">Edit your profile</button>
有人可以帮助我吗?几天前,我试图找到该错误,我需要帮助。谢谢!
答案 0 :(得分:3)
route()
助手使用路由名称作为参数。所以您的链接应该是
<a type="button" class="btn btn-info"href="{{ route('profile.update') }}">Edit your profile</a>