Get parent record in Relationship Manager

Hi, I am building the create/edit form in a relationship manager and I need to create a Select dropdown list of rows that are related to the parent row. How do I access the parent row in the form section of a relationship manager?
Solution
i don't know where do you want to use that, but since you've mentioned 'Select', probably in the

->options(fn ($livewire) => YourModel::where('parent_id', $livewire->ownerRecord->id)->pluck(...))
Was this page helpful?