Problem Statement
Explain the request lifecycle in Laravel.
Explanation
A request enters Laravel through public/index.php, is handled by middleware, routes to a controller via the router, executes business logic, and returns a response. Service providers and middleware play key roles in preparing the environment.
