Problem Statement
What are Facades in Laravel?
Explanation
Facades provide a static interface to classes registered in the Laravel service container. They make code cleaner and allow quick access to framework features like Cache, DB, and Route without creating objects manually.
