Hi,
I have array/json like this. And now i want try model data structure table.
Rows: ID, Name, Total
How do i SELECT name and total where ID is equal first row ID?
"items" => [
[
"id" => 1,
"name" => Test1,
"total" => 150.00
],
[
"id" => 2,
"name" => Test2,
"total" => 178
]
]