Support the ongoing development of Laravel.io →
posted 5 years ago
Last updated 1 year ago.
0

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.

Last updated 5 years ago.
0

simply make your route like

Route::get('/user', '[email protected]');

Route::get('user/profile', function () { // })->name('profile'); You may also specify route names for controller actions:

Route::get('user/profile', '[email protected]')->name('profile')

0

Sign in to participate in this thread!

LoadForge

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2023 Laravel.io - All rights reserved.