Routing
        add_to_cart
        Matched route
    
Route Parameters
| Name | Value | 
|---|---|
| id | "34" | 
Route Redirection
This page redirects to:
        /mon-panier
        (route: "n/a")    
Route Matching Logs
    Path to match: 
/cart/add/34
| # | Route name | Path | Log | 
|---|---|---|---|
| 1 | account_address | /compte/addresses | Path does not match | 
| 2 | account_address_add | /compte/ajouter-une-adresse | Path does not match | 
| 3 | account_address_edit | /compte/modifier-une-adresse/{id} | Path does not match | 
| 4 | account_address_delete | /compte/supprimer-une-adresse/{id} | Path does not match | 
| 5 | account | /compte | Path does not match | 
| 6 | account_order | /compte/mes-commandes | Path does not match | 
| 7 | account_order_show | /compte/mes-commandes/{reference} | Path does not match | 
| 8 | account_password | /compte/modifier-mon-mot-de-passe | Path does not match | 
| 9 | admin | /admin | Path does not match | 
| 10 | cart | /mon-panier | Path does not match | 
| 11 | add_to_cart | /cart/add/{id} | Route matches! | 
Note: These matching logs are based on the current router configuration, which might differ from the configuration used when profiling this request.