<x-filament-panels::resources.relation-managers>
How can I render a relation manager’s UI inside my own custom view in Filament v4 now that the <x-filament-panels::resources.relation-managers> Blade component is no longer available? What’s the recommended way to embed a specific resource’s relation manager in a custom page/view?
7 Replies
Check out page schemas. You don't need to overwrite blade views anymore. You can overwrite the whole structure of the page via
function content()
.
The RM component can be retrieved via getRelationManagersContentComponent()
method.ok.. that is new me 😄
Well, it's a v4 feature 😅
Is it possible to implement e.g. in the content ?

Should be possible.
Grid > EmbeddedInfoList + (Form + RM). Check the srouce code of the
EditRecords::content()
method to understand how it's builtok thx 🙂
Solution
yah
works 😄 thx a lot