'integer', ]; /** * Bundle al que pertenece este item */ public function bundle() { return $this->belongsTo(Bundle::class); } /** * Producto componente */ public function inventory() { return $this->belongsTo(Inventory::class); } }