Routing
magazine_show
Matched route
Route Parameters
| Name | Value |
|---|---|
| edition_number | "31" |
| slug | "inspirasi" |
Route Matching Logs
Path to match:
/magazine/inspirasi/31
| # | Route name | Path | Log |
|---|---|---|---|
| 1 | magazine_by_slug | /magazine/{slug} | Path does not match |
| 2 | admin | /admin | Path does not match |
| 3 | app_profile_change_email | /profile/change-email | Path does not match |
| 4 | app_download_edition | /download/edition/{id} | Path does not match |
| 5 | edition_like | /edition/{id}/like | Path does not match |
| 6 | login2 | /login2 | Path does not match |
| 7 | magazine_index | /magazine/ | Path does not match |
| 8 | magazine_show | /magazine/{slug}/{edition_number} | Route matches! |
Note: These matching logs are based on the current router configuration, which might differ from the configuration used when profiling this request.