Superb article — thank you.
Mark Whibley
11
Hi Mark,
Yes, the path of the routes files is: app/Http/routes.php
but be aware that the directory structure will be changed in Laravel 5.3:
In 5.3, the app/Http/routes.php file has now moved to the root routes/ directory, and it’s now split into two files: web.php and api.php. As you can probably guess, the routes in routes/web.php are wrapped with the web middleware group and the routes in routes/api.php are wrapped with the api middleware group. — Routing changes in Laravel 5.3