Which Laravel feature is used for handling routing?

Which Laravel feature is used for handling routing?

a) Routes.php
b) Eloquent ORM
c) Blade templating
d) Route facade

Answer:

d) Route facade

Explanation:

Laravel uses the Route facade to define routes. It maps URLs to controller actions or closures, enabling handling HTTP requests.

Reference:

Laravel Quiz – MCQ – Multiple Choice Questions

Scroll to Top