Laravel.IO: Reverse-Routing with Controller Actions
Published on by Eric L. Barnes
Reverse-routing is generating URLs based on route declarations.
For example the following route declaration tells Laravel to execute the action “register” in the controller “users” when the request’s URI is ‘register’.
Route::any(‘register’, ‘users@register’);