Marco
how to get selected table record inside list page resource
Sorry im not sure, maybe someone else would have an idea.
I do know it would work fine if you use a bulk action, then you just get a collection of all the selected objects.
Or if you dont care about any filters you could just query the modal in the header action
5 replies
how to get selected table record inside list page resource
not sure but maybe you just want to used the build in export?
https://filamentphp.com/docs/3.x/actions/prebuilt-actions/export
5 replies
filament table hidden record null
I dont think that you can.
if one record has PERDANA LITED and the record below has VOUCHER
The table cant render both columns in the same place
Maybe create an extra resource where you filter the query using based on the category:
https://filamentphp.com/docs/3.x/panels/resources/listing-records#customizing-the-table-eloquent-query
13 replies
Create new component have an error
You cant add a livewire component directly into a form use:
https://filamentphp.com/docs/3.x/forms/advanced#inserting-livewire-components-into-a-form
3 replies
Why does TextInput does not want to save value
The name of the textInput = contents.{$lang->value}.title
The save will try to resolve the relation contents.[lang] right?
and save it to the title column on that relation.
Does that relation even exist in the contents model?
7 replies