adspace
Answer Posted / Lalitram
Routing in Laravel 5 is a system for handling URLs. It maps incoming requests to the appropriate controller and action.nnTo define routes, you can modify the `routes/web.php` file or use route service provider classes.nHere's an example:n```phpnRoute::get('/', function () {n return view('welcome');n});```
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers