So i have this table
|id| price | start_time |
--------------------------------
|1 | 45000.00 | 04:45:00 |
|1 | 45000.00 | 07:00:00 |
|2 | 40000.00 | 01:20:00 |
I want to make a collection that return json like this
{
id: 1
price: 45000.00
start_time: [
04:45:00, 07:00:00
]
},
{
id: 2
price: 40000.00
start_time: [
01:20:00
]
}
I spent a lot of time to figure it out but I can't do it
Please help me to figure it out,thanks in advance