Laravel Collection push() not properly working
问题 I am trying to duplicate an item in a collection based on the date range. For example, I have a JSON of this: { "title": " 200", "start": "2017-12-20", "endx": "2017-12-25", "equipment": "Chairs", "quantity": 200 } Now I want to duplicate 6x because there are 6 days from 12-20 to 12-25. Like this: { "title": " 200", "start": "2017-12-20", "endx": "2017-12-20", "equipment": "Chairs", "quantity": 200 } { "title": " 200", "start": "2017-12-21", "endx": "2017-12-21", "equipment": "Chairs",