[Vuejs]-Passing foreach loop item from blade to vue and getting each of the looped item

0👍

I think you should pass $user instead of $user['email'] to the component.

<edit-user :user="{{$user}}"></edit-user>

Leave a comment