Google News
logo
Laravel - Interview Questions
What do you understand by Reverse routing?
Reverse routing in Laravel is used to generate the URL based on name or symbol. It defines a relationship between the links and, Laravel routes, and it is possible to make later changes to the routes to be automatically propagated into relevant links. When the links are generated using names of existing routes, the appropriate uniform resource identifiers (URIs) are automatically generated by Laravel. Reverse routing provides flexibility to the application and helps the developer to write cleaner codes.
 
Route Declaration :
Route::get('login', 'users@login'); ​
 
A link can be created to it using reverse routing, which can be further transferred in any parameter that we have defined. If optional parameters are not supplied, they are removed automatically from the generated links.
{{ HTML::link_to_action('users@login') }}  
Advertisement