i have 3 tables like A,B and C.. A and B has relation but A and C dont have any connection. B and C related.
In cakephp3 index action returns the A and B relation only .. i Need to take the table C data.
Table Details:
- Purchase_details
- measure_inventories
- measurement_lables
You can use
contain
to get associated table's data..If you want association of association then you can use
recursive
too. But if you want this only with one association then you can try this: