What is "laravel-routes"

The Laravel uses routes to map an arbitrary URL to a controller and define a specific action.

for example

 http://example.com/foo/bar/23 

Can pass a id 23 for the controller foo and the action bar.

Unusual urls could also be mapped

Data controller lugares, is intended for action lista, we can use routes to allow this URL:

 http://example.com/my/places

Before posting your question, see if you can’t find the answer on official documentation.

For more usage information, see the tag