You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, these calls break when the tenancy model has a route key other than id, for example, a slug key.
Navigating folders begins with the correct URL app/example/folders but then clicking a folder attempts to redirect to app/7/media?folder_id=3 which results in a 404
off the top of my head, the solution is probably to check filament()->getTenant()->getRouteKey()
I wouldn't mind submitting a PR to solve this but I'd imagine its in more areas.
The text was updated successfully, but these errors were encountered:
When building the URLs there are tenancy checks like the following
filament()->getCurrentPanel()->getId()
However, these calls break when the tenancy model has a route key other than id, for example, a slug key.
Navigating folders begins with the correct URL
app/example/folders
but then clicking a folder attempts to redirect toapp/7/media?folder_id=3
which results in a 404off the top of my head, the solution is probably to check
filament()->getTenant()->getRouteKey()
I wouldn't mind submitting a PR to solve this but I'd imagine its in more areas.
The text was updated successfully, but these errors were encountered: