Skip to content
Advertisement

Laravel Relationship Getting All Children

I have a query which returns a table. I would like to also return a list of styles which relate to it from another table. I have tried many things but I can’t find one which works. Any advice?

Query:

JavaScript

YarnOrderLines:

JavaScript

YarnOrderLineStyles (table with relating styles in I would like to pull in)

JavaScript

Advertisement

Answer

You’re already getting 2 relations from YardOrderLines, so you just need to add another with statement. You can combine them all into 1 line like this:

JavaScript

And remove the with statement on your relation inside of YarnOrderLines, so it really doesn’t have a bearing on the Styles table.

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