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
Hi. Relation Managers on the view page are readOnly by default. You can override that with this in your relation manager:
public function isReadOnly(): bool
{
    return false;
}
Was this page helpful?