TK
How to replace the reorder indicator?
@Leandro Ferreira problem is that it doesn't contain a variable atm. I want to make it universal. So for each different model I have another sentence, like so:
'reorder_indicator' => 'Drag and drop the :entity into order.'
But since this translation is also used by Filament itself, it breaks when I add a variable.7 replies
How to route to a page with a given filter?
Found it, it's a Filament bug. Square brackets
[ ]
should always be encoded, since not all browser recognizes them. The are not part of the allowed characters list. So Filament should always encode these, but they are not. Hence my problem: Laravel encodes them, Filament does not > duplicate values!20 replies
How to route to a page with a given filter?
Don't get me wrong, it applies the filter, but whenever I add another or change the existing one to another value, the filter is being re-applied to the whole url, ending up with:
https://example.local/....?tableFilters%5Bunit%5D%5Breservable%5D%5Bcode%5D=UN100000&tableFilters[unit][reservable][code]=UN100001
20 replies