Routing

Learn about routes and how they are created.

Introduction

The start/routes.js file defines the URL patterns that we allow our users to access as entry points to our web application. Every time a user requests a certain URL, Adonis finds the URL pattern inside start/routes.js. If the pattern matches, Adonis processes the ...