Fogzy
Lower payload size
https://github.com/filamentphp/filament/issues/9304
I see this is a known issue and we might be getting some perf upgrades in Filament 4. I'm closing this.
3 replies
reuse existing resource in select (createOptionForm)
Yeah I did the same workaround, but anyway, would be nicer to be able to use the method directly. That would mean that the form object has to be visible for the createOptionForm closure… Thanks anyway.
5 replies
Custom hierarchical (tree) table - filament or custom row by row?
I would do this using a query string, e.g.
parentId
. Starting with no parentId
, I would limit the query to only parent_id = NULL
(level=0). Then I would put links in each row to the same table, but with the query string parentId=$row->id
. You would then change the base query to look only for records with parent_id = $parentId
.3 replies