how i can to change a key on json to array with one value in laravel. i send api for android app and i need to send all data In the form of list to read in android. for example:
{
data1: {
d1: "aaaaaaaaaaa"
}
data2: [
d11: "ccccccccccc"
d12: "jjjjjjjjjjj"
]
}
convert to:
{
data1: [
d1: "aaaaaaaaaaa"
]
data2: [
d11: "ccccccccccc"
d12: "jjjjjjjjjjj"
]
}
change data1 to array and use this [].