Recursivity for flatMap
jmverges opened this issue · 0 comments
jmverges commented
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