738 0 0 0
Last Updated : 2025-10-29 05:32:08
In this snippet I will teach you how to get results with query with 2 relationships in laravel
You can use nested relationships which are defined as dot notation like this
$item = Product::with('prices.unit')->where('id', $request->input('id'))->get() ;the code above will get the product with its prices and it will get the unit related to the price also