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.