There is no route named 'replyf'. Check the docs on routing for 'named routes' and it will describe how to name them. The URI/path is not the name.
simply make your route like
Route::get('/user', 'UserController@index');
Route::get('user/profile', function () { // })->name('profile'); You may also specify route names for controller actions:
Route::get('user/profile', 'UserController@showProfile')->name('profile')
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community