InterviewSolution
Saved Bookmarks
| 1. |
How to create route name in Laravel 5? |
|
Answer» You can create this by "NAME" ATTRIBUTE in your routes/web.php. Below is an exampleRoute::get('CONTACT-us', '[email protected]')->name('contact'); <a href="{{route('contact')}}"> Go to Contact page </a> |
|