'int', 'bundle_product_id' => 'int', 'quantity' => 'int', 'pos' => 'int', ]; protected $fillable = [ 'product_id', 'bundle_product_id', 'quantity', 'pos', ]; /** * Das Set/Kit-Produkt (Parent) */ public function product() { return $this->belongsTo(Product::class, 'product_id'); } /** * Das enthaltene Produkt (Child) */ public function bundleProduct() { return $this->belongsTo(Product::class, 'bundle_product_id'); } }