How to access the fields in the table in many-to-many intermediate tables?
What kind of eloqunet builder is required to access the isAlternative field in the table named category_product?
Category table
categories
 - id
 - name
Product table
products
 - id
 - name
 - price
CategoryProduct table
category_product
 - category_id
 - product_id
 - isAlternative
