kirschbaum-development/nova-inline-relationship

Recursivity for flatMap

jmverges opened this issue · 0 comments

This needs recursivity

a Panel could have inside a DependencyPanel or any other 3rd party stuff. Locally I just did

            ->flatMap(function ($value) {
                return Integrate::fields($value);
            })
            ->flatMap(function ($value) {
                return Integrate::fields($value);
            })

and I got it working