Routing
new_blog_category
Matched route
Route Parameters
| Name | Value |
|---|---|
| category_name | "Informations" |
Route Matching Logs
Path to match:
/category/newblog/Informations
| # | Route name | Path | Log |
|---|---|---|---|
| 1 | account_login | /admin-login | Path does not match |
| 2 | account_logout | /logout | Path does not match |
| 3 | account_register | /register | Path does not match |
| 4 | account_profile | /account/profile | Path does not match |
| 5 | account_password | /account/password-update | Path does not match |
| 6 | account_index | /account | Path does not match |
| 7 | make_admin | /makeadmin/{idUser} | Path does not match |
| 8 | remove_admin | /removeadmin/{idUser} | Path does not match |
| 9 | cabinet_index | /cabinet/ | Path does not match |
| 10 | cabinet_new | /cabinet/new | Path does not match |
| 11 | cabinet_show | /cabinet/{id} | Path does not match |
| 12 | cabinet_edit | /cabinet/{id}/edit | Path does not match |
| 13 | cabinet_delete | /cabinet/{id} | Path does not match |
| 14 | category_index | /category/ | Path does not match |
| 15 | category_new | /category/new | Path does not match |
| 16 | category_show | /category/{slug} | Path does not match |
| 17 | category_edit | /category/{slug}/edit | Path does not match |
| 18 | category_delete | /category/{slug} | Path does not match |
| 19 | blog_category | /category/blog/{category_name} | Path does not match |
| 20 | new_blog_category | /category/newblog/{category_name} | Route matches! |
Note: These matching logs are based on the current router configuration, which might differ from the configuration used when profiling this request.