What is Routing?
Laravel Tips/What is Routing?
All Laravel routes are defined in route files stored in the routes directory. These files are loaded by the MVC framework. The routes/web.php files define routes that are available for the web interface. Those routes are allotted as the web middleware group, which provides features such as session state and CSRF protection. The routes available in routes/api.php are stateless and are allotted as the API middleware group. For most of the applications, one should start by defining routes in the routes/web.php file.
Leave a comment
No Cmomments yet