rendering Relation Manager table on a custom blade page

Is it possible to render a relation manager table out of resource file

I have class User Profile that extends a layout class User Profile Layout extends Page (this is linked to the resource)

and for User Profile t i am using a custom blade view

just to give an idea

<x-layouts.user-profile> <livewire:likes-table :user="$this->record" /> <livewire:comments-table :user="$this->record" /> </x-layouts.user-profile>

I also have relation managers in user resource and they are working fine on edit page

how can i render the same relation managers for likes table
and comments table instead of using a table component class(for likes and comments
Was this page helpful?