<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?
Solution:
yah works 😄 thx a lot...
Jump to solution
7 Replies
Dennis Koch
Dennis Koch2w ago
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.
jouni.i
jouni.iOP2w ago
ok.. that is new me 😄
Dennis Koch
Dennis Koch2w ago
Well, it's a v4 feature 😅
jouni.i
jouni.iOP2w ago
Is it possible to implement e.g. in the content ?
No description
Dennis Koch
Dennis Koch2w ago
Should be possible. Grid > EmbeddedInfoList + (Form + RM). Check the srouce code of the EditRecords::content() method to understand how it's built
jouni.i
jouni.iOP2w ago
ok thx 🙂
Solution
jouni.i
jouni.i2w ago
yah works 😄 thx a lot

Did you find this page helpful?