I have 3 model Price, Description and Product
the Description model has relationship on Price model and Price model has relationship on Product.
Can I call the product when I try to get it on Description model using the relationship of Price?
here's what I'm trying to do
$description = Description::model()->with('Price')->findAll();
// after that I want to call the product which is on price.
they're all connection using their id. product_id, description_id and price_id
How can I achieve this? is there a way?