Table Actions for RelationshipManager be Visible in ViewPage

Using a Relationship Manager inside a ViewPage. The header actions, and table actions aren't visible on the view page. Would like them to be visible on the view page instead of edit. Is there a handy function to enable them?
1 Reply
Solution
binaryruel
binaryruel5mo ago
This is resolved in the docs https://filamentphp.com/docs/3.x/panels/resources/relation-managers#read-only-mode
public function isReadOnly(): bool
{
return false;
}
public function isReadOnly(): bool
{
return false;
}
Thanks!