Relationship Manager: Open in same window (non-modal)

Say I have a UserResource and a PostResource.

When I add a PostRelationManager, it opens posts in a modal. How can we make it display the full page Post instead of modal?

PostRelationManager:
    public function table(Table $table): Table
    {
        return PostResource::table($table);
    }


PostResource Actions:
->actions([
    Tables\Actions\ActionGroup::make([
        Tables\Actions\ViewAction::make(),
        Tables\Actions\EditAction::make(),
    ]),
])


When on the PostResource, it opens in the same page, but when using the relationship manager, it opens a modal.
Been scouring the docs but not seeing it. Thanks!
Was this page helpful?