My JSON string that I submit using php looks like this:
{id: '1', date: '2024-05-05', start: '1', description: 'fdsfdsfd', standort: 'sz', …}
I would like the string to look like this:
[DATE]
- [ID]
- [REST DATA]
The date should come first, then the ID and the remaining values within the ID.
3