Предполагается, что у вас есть следующий модальный
- Марка
- Продукт
- TransactionSellLines
Для Brand.php [То есть модальный бренд]
public function products(){
return $this->hasMany(Product::class,'brand_id','id');
}
Для Product.php Модальный
public function transactionSellLines(){
return $this->hasMany(TransactionSellLines::class,'product_id','id');
}
Тогда ваш запрос Laravel Eloquent будет выглядеть так:
Brand::with('products.transactionSellLines')->get();