692 0 0 0
Last Updated : 2025-04-28 22:12:23
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