How can i pass an array in vue js via laravel(blade)? I tried to do so :
//$users - array blade:
<all-users users="{{ $users }}"></all-users>
vue:
<tr v-for="user in users" >
<td>{{ user.id }}</td>
<td>{{ user.login }}</td>
</tr>
js:
export default {
props:['users']
}
//don't working all
P.S I tried also: <all-users users="{{ $users[0]->toJson() }}"></all-users>
Output:
{"id":2,"email":"[email protected]","login":"SimpleUser","role_id":0,"images":"public\/img\/default_avatar.png","created_at":null,"updated_at":null}
In advance thanks for help
<all-users :users='@json($users)'></all-users>
or
<all-users :users='{{ json_encode($users) }}'></all-users>
To pass data from laravel to vue your best option is using the @json option provided by Laravel. So your code will be like so:
<all-users :users='@json($users)'></all-users>
Keep in mind that you need to use single quotations @json function. Also don't forget to use ":" for your user prop otherwise it will be interpreted as string.
Laravel docs for json data: https://laravel.com/docs/master/blade#displaying-data
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With