Wie speichere ich Daten in der Verwaltung in foreach beim Aktualisieren und Erstellen? Code unten:
var messages = this.repository
.search(new Criteria(), Shopware.Context.api)
.then((results) => {
this.results = results
results.forEach(function(result) {
result.show_in_landscape = false;
})
console.log(results)
})