Skip to content
Advertisement

How to dynamically set a parent table when accessing a collection?

I’m trying to fetch data from dynamically different tables depending on which user is logged on and if he is allowed to edit said table, what I thought was going to work was this:

JavaScript

And it outputs an error on the last bit of code saying "Trying to get property 'id' of non-object" I have been looking around for hours but couldn’t find anything related. This is all inside a livewire component by the way.

Thanks in advance.

Edit:

dd($colaboradores->Niveis)

dd($colaboradores->Niveis->$string)

Advertisement

Answer

Since $colaboradores->Niveis->$string returns a Collection, you need to iterate over it to get results.

JavaScript

Then you can check the IDs in $test with dd($test); for example.

This can cause a problem if $obj is not a real object, so you could check it with:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement