Passing in parent edit item elements to relationship manager? V2
How can we pass in the parent item into the relationship manager to get some parameters, for example I want to filter by a type of the parent
Solution:Jump to solution
You can use like this in v2.
```php
->options(function (RelationManager $livewire): array {
dd($livewire->ownerRecord->id);
})...
2 Replies