Concept Flow - Route caching
Define routes in routes/web.php
Run 'php artisan route:cache'
Laravel compiles routes into cache file
Cached routes used on requests
Faster route resolution
If routes change -> run 'php artisan route:cache' again
Routes are defined, then cached by a command, so Laravel loads them faster on each request.