Routing
app_home
Matched route
Route Parameters
No parameters.
Route Redirection
This page redirects to:
/login
Route Matching Logs
Path to match:
/
| # | Route name | Path | Log |
|---|---|---|---|
| 1 | app_login | /login | Path does not match |
| 2 | app_logout | /logout | Path does not match |
| 3 | app_contact_index | /contact/ | Path does not match |
| 4 | update_contact | /contact/update-contact/{id} | Path does not match |
| 5 | update_dossier | /contact/update-dossier/{id} | Path does not match |
| 6 | app_fetch_contacts | /contact/fetch-contacts | Path does not match |
| 7 | app_contact_add | /contact/add-contact | Path does not match |
| 8 | app_contact_show | /contact/{id} | Path does not match |
| 9 | app_contact_projects_content | /contact/{id}/projects | Path does not match |
| 10 | app_contact_documents_content | /contact/{id}/documents | Path does not match |
| 11 | app_contact_edit | /contact/{id}/edit | Path does not match |
| 12 | app_contact_deletecontact | /contact/delete-contact/{id} | Path does not match |
| 13 | app_contact_type_index | /type/ | Path does not match |
| 14 | app_contact_type_add | /type/add-type | Path does not match |
| 15 | app_fetch_contact_types | /type/fetch-contact-types | Path does not match |
| 16 | app_contact_type_show | /type/{id} | Path does not match |
| 17 | app_contact_type_edit | /type/{id}/edit | Path does not match |
| 18 | app_contacttype_deletedocument | /type/delete-type/{id} | Path does not match |
| 19 | app_custom_table_index | /custom/table/ | Path does not match |
| 20 | app_custom_table_new | /custom/table/new | Path does not match |
| 21 | app_table_add | /custom/table/add-table | Path does not match |
| 22 | app_custom_table_show | /custom/table/{id} | Path does not match |
| 23 | app_custom_table_edit | /custom/table/{id}/edit | Path does not match |
| 24 | app_table_update | /custom/table/update-table/{id} | Path does not match |
| 25 | app_custom_table_delete | /custom/table/{id} | Path does not match |
| 26 | app_dashboard | /dashboard | Path does not match |
| 27 | app_home | / | Route matches! |
Note: These matching logs are based on the current router configuration, which might differ from the configuration used when profiling this request.