Routing
app_back
Matched route
Route Parameters
No parameters.
Route Matching Logs
Path to match:
/
| # | Route name | Path | Log |
|---|---|---|---|
| 1 | app_api_dogs | /api/dogs | Path does not match |
| 2 | api_dogs_get_item | /api/dogs/{id} | Path does not match |
| 3 | api_dogs_post | /api/secure/dogs | Path does not match |
| 4 | api_dog_update_item | /api/secure/dogs/{slug} | Path does not match |
| 5 | api_dog_delete_item | /api/secure/dogs/{slug} | Path does not match |
| 6 | app_api_hobby | /api/hobbies | Path does not match |
| 7 | app_api_get_hobbies_by_dog | /api/dog/{id}/hobbies | Path does not match |
| 8 | api_hobbies_post | /api/secure/dogs/{id}/hobby | Path does not match |
| 9 | api_hobbies_update_item | /api/secure/dogs/{dog_id}/hobby/{id} | Path does not match |
| 10 | api_hobby_delete_item | /api/secure/hobby/{id} | Path does not match |
| 11 | app_api_members | /api/members | Path does not match |
| 12 | api_members_get_item | /api/members/{id} | Path does not match |
| 13 | app_api_member | /api/member | Path does not match |
| 14 | api_members_post | /api/secure/members | Path does not match |
| 15 | api_member_update_item | /api/secure/members/{id} | Path does not match |
| 16 | api_member_delete_item | /api/secure/members/{id} | Path does not match |
| 17 | app_api_picture | /api/pictures | Path does not match |
| 18 | app_api_get_pictures_by_dog | /api/dog/{id}/pictures | Path does not match |
| 19 | api_pictures_post | /api/secure/dogs/{id}/pictures | Path does not match |
| 20 | api_pictures_update_item | /api/secure/dogs/{dog_id}/picture/{id} | Path does not match |
| 21 | api_picture_delete_item | /api/secure/picture/{id} | Path does not match |
| 22 | app_back_dog_index | /back/dog/ | Path does not match |
| 23 | app_back_dog_new | /back/dog/new | Path does not match |
| 24 | app_back_dog_show | /back/dog/{id} | Path does not match |
| 25 | app_back_dog_edit | /back/dog/{id}/edit | Path does not match |
| 26 | app_back_dog_delete | /back/dog/{id} | Path does not match |
| 27 | app_back_hobby_index | /back/hobby/ | Path does not match |
| 28 | app_back_hobby_indexhobbies | /back/hobby/dog/{id} | Path does not match |
| 29 | app_back_hobby_new | /back/hobby/new/dog/{id} | Path does not match |
| 30 | app_back_hobby_show | /back/hobby/{id}/show/dog/{dog_id} | Path does not match |
| 31 | app_back_hobby_edit | /back/hobby/{id}/edit/dog/{dog_id} | Path does not match |
| 32 | app_back_hobby_delete | /back/hobby/{id}/dog/{dog_id} | Path does not match |
| 33 | app_back | / | Route matches! |
Note: These matching logs are based on the current router configuration, which might differ from the configuration used when profiling this request.