Assume the following scenario:
Owners has manyToMany relation with models: Garages and Cars. Garages has a manyToMany relation with Cars as well since each garage can have different cars than the ones from the owner. Now i know how to retrieve the owner's Garages like so:
$owner->getGarages();
The problem is that the Garages do not have the Cars from their manyToMany relation. How can i retrieve the owner's garages and their linked cars?