Routing
app_cart
Matched route
Route Parameters
| Name | Value |
|---|---|
| _locale | "en" |
Route Matching Logs
Path to match:
/cart
| # | Route name | Path | Log |
|---|---|---|---|
| 1 | admin | /admin/{_locale} | Path does not match |
| 2 | admin_invoice | /admin/{_locale}/invoice | Path does not match |
| 3 | admin_invoice_download | /admin/{_locale}/invoice/{id}/download | Path does not match |
| 4 | admin_invoice_download.cs | /admin/faktura/{id}/stahnout | Path does not match |
| 5 | admin_invoice_download.en | /admin/invoice/{id}/download | Path does not match |
| 6 | admin_api_text_block_get | /admin/api/text-block/{key} | Path does not match |
| 7 | admin_api_text_block_update | /admin/api/text-block/{key} | Path does not match |
| 8 | app_cart | /{_locale}/cart | Path does not match |
| 9 | app_cart.cs | /kosik | Path does not match |
| 10 | app_cart.en | /cart | Route matches! |
Note: These matching logs are based on the current router configuration, which might differ from the configuration used when profiling this request.