does RelationManager support navigating to view instead of modal view?
does RelationManager support navigating to view instead of modal view?
Solution:Jump to solution
You can write your own Action and link to the page. You don't get hierarchy this way though.
```php
Action::make('view')
->url(fn ($record) => YourResource::getUrl('view', ['record' => $record]))...
1 Reply
Solution
You can write your own Action and link to the page. You don't get hierarchy this way though.