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?
Solution:Jump to solution
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;...
1 Reply
Solution
This is resolved in the docs https://filamentphp.com/docs/3.x/panels/resources/relation-managers#read-only-mode
Thanks!