Husky110
Navigation in groups with translated labels
Okay - I was able to figure out that my error came from a mixup. The correct code for the WarehouseManagementResource should have been this:
Problem is - the Sub-Group does not show up on the navigation... I tried returning a static string
return 'Tools';
but nothing shows up...5 replies
How can I remove the "All pages" row in the Summarizers?
do you always wanna show all records or just remove the all entries?
showing all works by
->paginated(false)
on the table.
removing only the "all"-entry works by ->paginationPageOptions([1,2,3])
on the table.23 replies
Wizard with depending steps in an action
Okay, found it out myself. I can lock the user in step 1 by using custom rules. see https://filamentphp.com/docs/3.x/forms/validation#custom-rules afterwards the advanced forms (dependend select-options and such) helped. see https://filamentphp.com/docs/3.x/forms/advanced
4 replies