Skip to content
Advertisement

Laravel query where field is less than sum of another field in related table (polymorphic relationship)

In Laravel trying to query a table for invoices (table name: invoices) where the invoice total (field name: net_total) is greater than the sum of payments made for that invoice. It is set as a polymorphic relationship.

Invoice Table:

Payment Table:

I tried the query which does not seem to work.

I tried the following as per an answer below which gives me sum of relationship but the where condition fails

Screenshot of result – https://prnt.sc/1favj7u The second array shouldn’t have comes as it fails where condition.

Any advice on what am I missing?

Advertisement

Answer

Since you will have many transactions as you said, that is the part missing in the query.

You can try something with withSum for example

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