Get the block's key when using ->extraItemActions()
Is there anyway to access the block item's key when using custom actions in extraItemActions()?
I can access the items data with getItemState() but I would need to know, what type of block it is.
Thank you!
4 Replies
What do you mean 'what type of block it is?'
You can get the uuid in the
$arguments
parameter
An example can be found here
https://filamentphp.com/docs/3.x/forms/fields/repeater#adding-extra-item-actions-to-a-repeaterThe uuid I have, yes. But each block has a key. I need the key.

I guess you can try using
$component->getChildComponents()
?
The trick for me was using $state[ $arguments['item']]