Concept Flow - Why routing maps URLs to logic
User enters URL
Web server receives request
Laravel routing checks URL
Match URL to route definition
Route points to controller or closure
Controller runs logic
Generate response (HTML, JSON, etc.)
Send response back to user
This flow shows how Laravel takes a URL from the user, finds the matching route, runs the related code, and sends back a response.