Table header actions not showing in view page
How do you show the
headerActions
of a relation manager inside a view page resource?
It only shows if I'm on the edit page, but I also want it to be enabled in view page.
Is this possible?Solution:Jump to solution
Hi. Relation Managers on the view page are readOnly by default. You can override that with this in your relation manager:
```php
public function isReadOnly(): bool
{
return false;...
3 Replies
Solution
Hi. Relation Managers on the view page are readOnly by default. You can override that with this in your relation manager:
Thank you so much π