[Vuejs]-Invalid argument supplied for foreach in laravel while working with vue js

0πŸ‘

βœ…

I think you should json_decode your $comments first then you can use foreach to it

0πŸ‘

All it required json_decode , exactly as below .

$comments = json_decode($request->cashoutexpenses, true);

Earlier i was using only json_decode along with one parameter without true keyword which was not working

Leave a comment