Action $arguments returning empty in visible closure
I'm currently trying to access to
This is an Action on a custom Livewire component on a custom page using
Function not working:
Result:
Function working:
Result:
Any help would be appreciated.
$arguments data within a visible closure but it's currently returning empty. Is it possible to access this variable here? I know $arguments are being passed correctly because they work fine in modalDescriptionThis is an Action on a custom Livewire component on a custom page using
Filament\Actions\ActionFunction not working:
->visible(fn(array $arguments) => dd($arguments)) Result:
[] // app/Livewire/SubscriptionManagement.php:134Function working:
->modalDescription(fn(array $arguments) => dd($arguments))Result:
Any help would be appreciated.