Using the hidden modifier on an Action seems to be disabling, not hiding the action button.
I have this method with a custom action:
This is what's in my blade file:
{{ $this->reopenAction }}
The action button is not actually being hidden, it's just being disabled. I've tried various different methods, including just hard-coding a boolean value:
->hidden(false) <-- enables the action button
->hidden(true) <-- disables the action button
in both cases the button is still visible.4 Replies
no joy..
Does the
->hidden()
work?
share the whole code please
This works as far as making the buttons appear/disappear now, but when the buttons are shown they're both disabled.