Multiple nested resources
I have a working livewire project to run tournaments. I'm thinking to redone the whole admin panel in filament.
The biggest "problem" for me is how to handle nested resources.
For example the admin will see/select:
-> tournaments (menu item)
-> specific tournament (model)
-> seeding (menu item)
-> class (menu item, belongsTo tournament)
-> stage (menu item, belongsTo class)
-> see a custom component where participants (belongsTo stage) can be drag&dropped to the brackets (belongsTo stage)
On that page there will be other classes / stages shown (as submenus) and the admin can select those anytime.
It this something you can build using filament?
Thanks for any help ππΌ
8 Replies
Any ideas?
as for native support it will be in v4
Thank you for the link. That seems to help with only one level nested, but it doesnt add any submenus and cant go deeper than one level
@hesesses , did you find any solutions for this? Iβm working on a similar project involving Events, Competitions, Rounds, and Participants. I came across the article from Laravel Daily, but as you mentioned, it only supports one level. Thanks in advance!
You will have to wait until v4
@ar we decided to build our own solution instead of using filament
@hesesses Thanks for your answer. I think then I am left to build my own solution for managing those resources in a custom livewire page and leave the rest to Filament.